How to Customize the Labels for Image Choices - Combined effect

form#wpforms-form-1000 .wpforms-field .wpforms-image-choices-item:hover .wpforms-image-choices-label { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background-color: #f6f6f6; color:…

<10

Setting the Default Address Scheme to International

This snippet is used to update the default behavior of the Address field in WPForms. This…

<10

Generate and Send Invoice Number to Authorize.Net

This snippet generates and sends a unique invoice number to Authorize.Net for completed payments in WPForms

<10

Use a custom ID prefix in Table of Content block

This snippet can be used to add a custom ID prefix for the Table of Content…

<10

Add Image Alt Text automatic

function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…

Remove Gutenberg Block CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Remove Google Fonts (non-Elementor)

function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );

Custom Receipt Page

Redirect to custom receipt or another page after a donation is completed. Can be per campaign…

Remove the link from the current breadcrumb item on a page

This snippet removes the link from the current breadcrumb item on a page.

<10

Change the Default Taxonomy Slug “locations-category”

This filter can be used to change the default taxonomy slug “locations-category”.

<10

Prevent AIOSEO From Outputting any Data on Category Archive Pages

Prevent AIOSEO from outputting any data on category archive pages.

<10

Add Multiple Checkboxes To Donation Form

This uses the "multi-checkbox" vs just "checkbox" for a single checkbox.

Changing Sublabels for the Email Field

This snippet is used to update the default labels for the Email field when it includes…

<10

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…

<10

How to Change the Captcha Theme on Google Checkbox v2 reCAPTCHA

/** * Change the captcha theme for the Google Checkbox v2 reCAPTCHA * * @link https://wpforms.com/developers/how-to-change-the-captcha-theme-on-google-checkbox-v2-recaptcha/…

<10
1 17 18 19 20 21 105