Exclude Wholesale Customers from receiving the PDF Invoice

Integration with the PDF Invoices & Packing Slips for WooCommerce plugin by WP Overnight.

Taxonomy Count

Control the number of products displayed on the default download category and download tag pages.

WWPP - Customize the admin "New Order" email subject for wholesalers

/** * Customize the Admin "New Order" email subject for wholesale customers only */ add_filter( 'woocommerce_email_subject_new_order',…

Add an image filed to the sign up form

// Add the image field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_image_uploader'); function wcv_image_uploader( ){ if…

Disable sold by link on checkout page

/** * Disable the sold by link on the checkout page */ add_filter('wcvendors_sold_by_link', 'wcv_disable_checkout_sold_by_link', 10, 2);…

Untitled Snippet

Remya Achipra
<10

Basic WP escaping functions

// ❌ Don't use _e(), __(), _x() etc. to output data // ✅ Use the escaped…

Filter the message generated for admin confirmation | Quick Event Manager

add_filter('qem_registration_email_message',,,3); This filters allows you to adjust the confirmation email to the admin / organiser (…

Tweaking the Calendar Language Localisation | Display Eventbrite Events

The calendar will attempt to localize the language based on the WordPress website setting. However, the…

Make Paypal as default payment gateway

This snippet will remove all other vendor payment commision methods. Only allowing Paypal, it also makes…

Untitled Snippet

[wpcode id="4547"]

peter rumsavich
<10
1 126 127 128 129 130 220