Search results for: woocommerce

Exclude Specific Products from Parent Category

/** * Exclude specific products from appearing in their parent category. */ add_action('woocommerce_product_query', 'exclude_specific_products_from_parent_category'); function exclude_specific_products_from_parent_category($q)…

Add a button to customer data

Add a button to retrieve all customer data.

All Available Shortcodes for WC Vendors (snippet 12)

have this enabled, then you will also need to have the related page and shortcode configured.…

Adding a Custom Field for Products (snippet 5)

This code will display the values on the single product page. Add this code to your…

How To Translate Wholesale Price Text

Enable translation of wholesale price text using WordPress translation functions for WPML/Polylang compatibility

Paystack Split Payments Integration with WC Vendors — Creating the Split Configuration

public function process_split_payment( $order ) { $vendors_due = WCV_Vendors::get_vendor_dues_from_order( $order, false ); $sub_accounts = array(); foreach…

Disable Unused Auto-Generated Image Sizes

* Disable Unused Auto-Generated Image Sizes * Optimized for AWS Storage savings & Performance.

Fix “Send to Friend” Field Visibility for Variable Gift Cards

This fix ensures the “Send to Friend” fields display correctly based on the selected variable gift…

Auto register guests that purchase

function wc_register_guests( $order_id ) { // get all the order data $order = new WC_Order($order_id); //get…

Carla Mawyin
<10

Generate a virtual coupon when order is completed.

This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…

Generate a virtual coupon when order is completed.

This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…

Show Certain Products to Certain Wholesale Customers Only

How to use: 1. Do not tag normal/default products. 2. Tag only “special” products with "wholesale-special".…

Diagnostic_Universal - KIC Universal Diagnostic Tool - PASSIVE VERSION

/** * KIC Universal Diagnostic Tool - PASSIVE VERSION * * A comprehensive diagnostic tool for…

ismail daugherty PRO
<10

Show Product Categories in the Vendor Product Catalog

This PHP code snippet automatically detects any page or post that contains the [wcv_products] shortcode and…

1 11 12 13 14