Exclude Wholesale Customers from receiving the PDF Invoice
Integration with the PDF Invoices & Packing Slips for WooCommerce plugin by WP Overnight.
Add an audio field to the sign up form
// Add the audio field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_audio_uploader'); function wcv_audio_uploader( ){ //…
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…
Escaping data with wp_kses
// ❌ Don't use html tags in escaping functions like esc_html, esc_attr and their localized equivalents…
Filter the decision to send a user confirmation | Quick Event Manager
add_filter('qem_registration_always_confirm',,,1); This filter returns a Boolean to decide if a confirm is to be sent or…
Filter Slider Speed | Display Eventbrite Events
The following filter changes slider speed from default 10 seconds ( 10000 milliseconds ). (Note this…
Change rating tooltip colors
Use this CSS to change the default colors for the rating tooltip.
Convert Uploaded Images to WebP Format Automatically
Automatically convert uploaded images to WebP format.
Untitled Snippet
Last updated date
Allow Other WordPress Roles to Manage Email Logs
This snippet will allow you to manage the capabilities of roles allowed to manage the site's…
Hide All Admin Notices in Sidebar
Hides all admin notices in a collapsible sidebar. AI generated code. Use with caution.