Search results for: woocommerce

custom order status wpadmin

/* * Register a custom order status * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/order-statuses.html */…

Hide SALE! Badges

/*Hide WooCommerce SALES Badges*/ .woocommerce span.onsale { display: none; } /*Hide SALES Badges in home page…

Resetting the Vendor & Pending Vendor Roles

add_filter('woocommerce_login_redirect', 'redo_roles', 10, 2); function redo_roles() { remove_role( 'pending_vendor' ); add_role( 'pending_vendor', __( 'Pending Vendor', 'wcvendors'…

Allow WooCommerce Shop Managers to manage vendors

/* Lets Shop Managers edit users with these user roles */ function wcv_allow_shop_manager_role_edit_capabilities( $roles ) {…

Add Custom Taxonomy to Woocommerce Single Product Page

add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…

AffiliateWP — Block Referrals for Existing Customers

Prevents AffiliateWP from generating referral commissions for returning customers. Commissions will only fire on a customer's…

Remove the "Apply to become a vendor" checkbox from the WooCommerce default customer signup form

/** * Remove WC Vendors "Apply to become a vendor" checkbox from the WooCommerce default customer…

How to Apply Coupon Coupon Based On Cart Item Meta

If you are unsure of the meta key and meta value, you may add the following…

META PIXEL BASE + MANUAL ADVANCED MATCHING (WooCommerce/WordPress)

/** * ============================================================================= * META PIXEL BASE + MANUAL ADVANCED MATCHING (WooCommerce/WordPress) * Pixel ID: *…

Product Video Cover Plugin Code

Código para criar a função de videos como capa de produto

<10

Button - Add to cart to Buy Now

add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) { if ( 'Add to cart' == $text ) { $text…

Carla Mawyin
<10

Continue Shopping Button

/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…

Carla Mawyin
<10

Button - Read More to Buy Now

changes read more to buy now

Carla Mawyin
<10

Product tabs

ADDS A TAB IN PRODUCT PAGES

Carla Mawyin
<10

Change the "Add to Cart" Button Text

Change Add to cart and Buy now buttons

1 5 6 7 8 9 16