Search results for: woocommerce

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 ) {…

Remove Caddy Premium conversions from showing on the WooCommerce orders page

This prevents Caddy Premium from modifying the orders table and item display

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…

Hide Out Of Stock items on WooCommerce Shop page when sorting (popularity/price) applied.

Hide Out Of Stock items on the WooCommerce Shop page when sorting (popularity/price) applied.

Move "Ships From" under the Product Meta, in the single product page template

Move "Ships From" under the Product Meta, in the single product page template by using 'product_ships_from'…

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

On Browsing WooCommerce Products

This snippet targets window shoppers and encourages them to add more products to their carts. This…

Button - Read More to Buy Now

changes read more to buy now

Carla Mawyin
<10

Kupon kódok megjelenítése az értesítő email-ekben

Ezzel a kóddal megjeleníthetjük a vásárlás során felhasznált kupon kódokat az értesítő email-ekben. Az egyszerűbb és…

Szállítási módok elrejtése a Kosár oldalon

Ezzel a kóddal a Kosár oldalon lehet a szállítási módokat elrejteni, így a vásárlók azt csak…

Woo SITE WIDE - Restaurant Hours + backend

Restaurant Hours, Shop Control & Checkout Disable (Enhanced with Vacations, Custom Notices, Dynamic Data, Close Button,…

Disable a Payment Gateway for a country on WooCommerce Checkout Page

Disable a Payment Gateway for a country on WooCommerce Checkout Page

Change the sold by label on the product archive

// Unhook WC Vendors method remove_action( 'woocommerce_after_shop_loop_item', array('WCV_Vendor_Shop', 'template_loop_sold_by'), 9 ); // Define new sold by…

Hide Price & Add to Cart for Non Logged in Users for Specific Products

This code snippet allows you to hide the price and 'Add to Cart' button for users…

1 3 4 5 6 7 8