Changing sublabels for Email Field on a Single Form
This snippet is used to change sublabel for Email field on a specific form. Be sure…
How to Disable Browser Autocomplete for Form Fields - specific fields
/** * Disable autocomplete for a specific form and field ID * * @link https://wpforms.com/developers/disable-browser-autocomplete-for-form-fields/ */…
Make Form Fields Required Not Required
This example shows how to make a form field required or not required.
Add Custom Campaign And Donation Field
In this example, a new email field is added which can be used both in campaign…
Add Dynamic Hidden Field
Dynamically set as a hidden field in the donation form, based on the ID of the…
Change Country Field To Hidden
Change the Country field in the donation form to a hidden field with a hard-coded default…
Change Custom Amount Field Label
Filter the custom amount field description.
Change Campaign Slug Base
Change the /campaigns/ bit to something else.
Admin Bar - Updates
Show updates in Admin Bar
Continue Shopping Button
/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…
WPCode Add New Snippet Skip Library Screen
This snippet enables you to skip the snippet library screen when adding a new snippet in…
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');
Create List of Child Pages
To show a list of Child pages on the Parent Page
WP Simple Pay: Add Custom CSS Classes to the Payment Button
"Payment Button" refers to the button that launches an On-site Overlay or Stripe Checkout Payment Form.
WP Simple Pay: Create WordPress User After Payment
Creates a new WordPress user when a subscription is started or a one-time payment is made.