Search results for: woocommerce

On Browsing WooCommerce Products

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

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…

AffiliateWP - Affiliate Referrals CSV Export

Adds a "Download Referrals CSV" button to the Affiliate Area referrals tab. When WooCommerce is active,…

Auto Generate Virtual Coupon After a Customer Completed an Order

/** * Generate a virtual coupon when order is completed. * * @param int $order_id Order…

Remove the coupon section for orders that did not use any coupon.

add_action( 'woocommerce_email_before_order_table', 'conditionally_remove_coupon_section_from_email', 5, 4 ); function conditionally_remove_coupon_section_from_email( $order, $sent_to_admin, $plain_text, $email ) { if (…

META CONVERSIONS API (CAPI) — PURCHASE (SERVER-SIDE)

/** * ============================================================================= * VOELGOED — META CONVERSIONS API (CAPI) — PURCHASE (SERVER-SIDE) * ============================================================================= *…

Auto Complete Virtual Orders - Not EFT

Auto complete virtual orders that are virtual but NOT downloadable, excluding EFT orders

Hide Cart Price Button

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

<10

Enable 'Quanity' label in woocommerce

add_action( 'woocommerce_before_add_to_cart_quantity', 'bbloomer_echo_qty_front_add_cart' ); function bbloomer_echo_qty_front_add_cart() { global $product; if ( $product->get_min_purchase_quantity() == $product->get_max_purchase_quantity() ) return;…

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…

Convert headings to sentence case

If you like your headings in sentence case this works. No changes WP Database: if snippet…

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…

rearrange shipping options

Login to cpanel. Choose “File Manager” Navigate to public_html>wp-includes>functions.php and select “Edit” Paste in the contents…

Woo SITE WIDE - Restaurant Hours + backend

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

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 6 7 8 9 10 14