This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mytheme_custom_add_to_cart_message($message, $product_id = null) { | |
$titles[] = get_the_title( key($product_id)); | |
$titles = array_filter( $titles ); | |
$added_text = sprintf( _n( '%s has been added to cart.', '%s have been added to cart', sizeof( $titles ), 'woocommerce' ), wc_format_list_of_items( $titles ) ); //Change the message here | |
$message = sprintf( '%s <a href="%s" class="button">%s</a>', | |
esc_html( $added_text ), | |
esc_url( wc_get_page_permalink( 'checkout' ) ), // Change to esc_url( wc_get_page_permalink( 'cart' ) ), if you want users to go to cart | |
esc_html__( 'Pay Now', 'woocommerce' )); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Turn all subscribers into Woo Vendors | |
*/ | |
function figarts_make_users_vendors( $user_id ) { | |
if (!defined('WC_PRODUCT_VENDORS_TAXONOMY')){ | |
return; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'user_register', 'figarts_make_users_vendors_wrapper', 10, 1 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Turn all subscribers into Woo Vendors | |
*/ | |
function figarts_make_customers_vendors( $user_id, $user_data ) { | |
if (!defined('WC_PRODUCT_VENDORS_TAXONOMY')){ | |
return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'woocommerce_created_customer', 'figarts_make_customers_vendors', 10, 2 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Woocommerce Styles */ | |
.woocommerce-message { display: none; } | |
.woocommerce-cart.full-width-content .content, | |
.woocommerce-checkout.full-width-content .content { max-width: 100%; } | |
.woocommerce-cart .woocommerce table.shop_table td.actions { | |
border-top: 1px solid #e6e6e6; | |
background: #f7f7f7; | |
border-bottom: 0px solid #e6e6e6; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: GP Ecommerce Margin | |
Plugin URI: https://figarts.co | |
*/ | |
/** You may noe start coding! **/ | |
class GPECF_Margins { | |
private static $instance = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: php:7.1.29 | |
pipelines: | |
default: | |
- step: | |
name: "Build and Test" | |
script: | |
- apt-get update | |
- apt-get install -y zip | |
- mkdir dist |
OlderNewer