How to Block Names From Completing Your Form - Simple format
/** * Prevent certain names from the Simple format Name form field. * * @link https://wpforms.com/developers/how-to-block-names-from-completing-your-form/…
Prevent AlOSEO from outputting any data on term pages
This snippet can be used to prevent AlOSEO from outputting any data on term pages
Add Image Alt Text automatic
function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…
Prevent AIOSEO From Outputting a rel=”prev” Link
Prevent AIOSEO from outputting a rel=”prev” link
Sending Form Fields as Smart Tags to Square
The snippet makes Smart Tags usable with Square payments. It allows you to include form fields…
Translating the Total Field's Order Summary
This code targets specific elements inside the Order Summary and updates the labels to the translated…
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');
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.
Disable the space key with the special CSS class
This code snippet disables the space key. When a user presses the space key in these…
Add Custom Field From Donation Form On The Receipt Page
This is an example of how to show a field data someone entered in their donation…
Adding a Custom Filter when using Other SMTP Setting
This snippet will help in troubleshooting steps from "SMTP Error: Could not authenticate".
Append Post Count to Category Descriptions in LLMS Files
This snippet appends the post count to category descriptions shown in llms.txt
Continue Shopping Button
/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…
Admin Bar - Updates
Show updates in Admin Bar
How to Customize the Labels for Image Choices
/* Position labels over images and hide them by default */ form#wpforms-form-1000 .wpforms-field .wpforms-image-choices-label { position:…