ModalCSS

Used to display popup modal in GenerateBlocks

Disable Right Click

Disable a right click on page.

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

Εμφάνιση πεδίων User Registration στη λίστα χρηστών του WordPress

/** * Save registration fields in custom user meta keys * and show them in the…

Only count last file

This plugin makes it so that All Access only increments the download counter if the customer…

Add custom text to WooCommerce Email Templates for Wholesale Customers

If you want to place content elsewhere in the email, swap the hook: woocommerce_email_before_order_table: Above the…

WWPP – Customize the admin “New Order” email subject for wholesalers v1.1

How to apply: 1. Replace the previous snippet with this one in your functions.php or Code…

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

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…

1 106 107 108 109 110 221