Set a minimum order amount in WooCommerce – No Plugin used
Post More Detail Learn how to Set a minimum order amount in WooCommerce. Customer will not…
How to Add BCC to Email Notifications (for specific form)
/** * Add BCC recipients to specific form email notifications. * * @link https://wpforms.com/docs/how-to-add-bcc-to-email-notifications/ */ add_filter(…
Sort Events Category by Publish Date (Oldest First)
function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs…
Admin Bar - Updates (copy)
Show updates in Admin Bar
Allow Subscriptions Product on BOGO and Add Product Search Field
add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…
Vendor Email Tag
Show the Shop Vendor's email for each download purchased
Single Vendor Purchase
Limits the customers purchase to a single vendor
Display a message after the 1st paragraph of posts
Thank you for reading this post, don't forget to subscribe!