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

10+

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

20+

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…

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…

100+

WSG GTM Body Tag

Add GTM Tag to Site Body in WSG Site Group

Colin Bunn PRO
<10

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

10+

Donation Form Email Check (Advanced)

If you need to do manual validation of an email when a donation is being submitted…

1 90 91 92 93 94 96