Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }
On Browsing EDD Products
This snippet targets window shoppers and encourages them to add more products to their carts. This…
Tweaking the Calendar Language Localisation | Display Eventbrite Events
The calendar will attempt to localize the language based on the WordPress website setting. However, the…
Defining SendGrid Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
om-webhook-example-v1.0.1.json
{ "lead": { "email": "[email protected]", "ipAddress": "1.2.3.4", "referrer": "https://optinmonster.com/", "timestamp": 1699985224, "privacyConsent": true, "firstName": "Archie", "lastName":…
om-monsterlink-mobile-variant.html
Subscribe Now!
Untitled Snippet
0 0
Add a Blue Dot Indicator for Containers/Widgets that have Custom CSS in the Elementor Navigator
You've probably been in this situation: you open an Elementor project and need to review or…
How To Allow Shop Manager to Manage Feeds?
#-- Allow Shop Manager to Access Product Feed Menus --# function allow_feed_menus_to_shop_manager( $capability ) { if…