Register New Users as Customers

Register New Users as Customers

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

Force account creation by cart total

Force account creation at checkout if the cart total is a certain amount and the quantity…

Prevent Discounts on Upgrades

Does not allow a discount code to be applied when an license upgrade is present in…

Use Full Store Address in Ships From

By default the Ships From metadata displayed under the add to cart button only shows the…

Add Custom Taxonomy to Woocommerce Single Product Page

add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…

Stop Lazy Load

add_filter( 'wp_lazy_loading_enabled', '__return_false' );

<10

Add Subscriber to Segment with Duration

Adds the subscriber to the segment for a specific duration, after the defined number of days…

Action Scheduler Cleardown | Display Eventbrite Events

Eventbrite uses Action Scheduler to handle background tasks when background processing is enabled. By default, Action…

Custom Plugin for WPForms

WPForms custom template generator.

David Ozokoye PRO
<10

AJAX Grid Search (multiple grids)

Add ID of #gridSearch to the search form. Give your multiple grid container a class of…

WhatsApp Button to WooCommerce Single Product Pages

Display a WhatsApp button on WooCommerce single product pages. You can customize color and shape of…

Disable Plugin & Theme Editor

Prevent users from using the Plugin & Theme file editor.

1 101 102 103 104 105 212