Search results for: admin
Displaying Shortcodes Inside Form Label Fields
/** * Run shortcodes on the form label field. * * @link https://wpforms.com/developers/how-to-display-shortcodes-inside-the-label-of-the-form-field/ */ function add_shortcode_to_label(…
How to Move to the Next Page Automatically
/** * Navigate to the next page automatically * * @link https://wpforms.com/developers/how-to-move-to-the-next-page-automatically/ */ function wpf_dev_automatic_next_page( )…
Adding a Custom Filter when using Other SMTP Setting
This snippet will help in troubleshooting steps from "SMTP Error: Could not authenticate".
Disable recurring renewal notices for specific download
Allows renewal notice emails to be disabled for subscriptions including a certain download.
Change Cancel Page URL For Paypal
This should redirect a donor to a custom URL after a donor clicks 'cancel' on Paypal's…
n'parks-photographie
page d'accueil
WC Vendors Marketplace vendor's list - Change Search for a vendor
Change Search for a vendor - WC Vendors Marketplace
Dynamic Monsterlinks By Class Name
// Target by class name window.onload = function(){ const dynamicMonsterLinks = document.querySelectorAll("a.myClass"); dynamicMonsterLinks.forEach(dynamicMonsterLinks => dynamicMonsterLinks.href =…
Resetting the Vendor & Pending Vendor Roles
add_filter('woocommerce_login_redirect', 'redo_roles', 10, 2); function redo_roles() { remove_role( 'pending_vendor' ); add_role( 'pending_vendor', __( 'Pending Vendor', 'wcvendors'…
Enable Legacy Email Templates
This snippet will allow the ability to select Legacy from the WPForms >> Settings >> Email…
WSG GTM Body Tag
Add GTM Tag to Site Body in WSG Site Group
To Remove a Single Field From {all_fields}
This code snippet removes a single field from your email notifications while still using the {all_fields}…
Donation Form Email Check (Advanced)
If you need to do manual validation of an email when a donation is being submitted…