Prevent AlOSEO from outputting any data on term pages

This snippet can be used to prevent AlOSEO from outputting any data on term pages

<10

How to Change the Error Text for Failed Submissions

This code snippet changes the error text that shows to your visitors on failed submissions.

<10

Set a specific language for Cloudflare Turnstile.

/** * Set a specific language for Cloudflare Turnstile. * * @link https://wpforms.com/developers/how-to-set-the-language-for-cloudflare-turnstile */ function wpf_add_turnstile_language_script()…

<10

How to Defer the reCAPTCHA Script

/** * Defer the reCAPTCHA script until after the page loads * * @link https://wpforms.com/developers/how-to-defer-the-recaptcha-script/ */…

<10

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

<10

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

<10

RT7 Official - Maintenance Mode

RT7 Official Maintenance Mode

<10

WP Simple Pay: Custom Webhook Handling Example

An example of handling the `coupon.updated` webhook event. For a full list of available events see:…

Add Custom Dynamic Variables

The Total theme allows you to use "Dynamic Variables" in various element text fields such as…

On Add to Cart Event in WooCommerce

Adds the cancellation event to stop the Browse Abandonment campaign for your push subscribers in the…

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

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…

WP Simple Pay: Custom Button Color

Using CSS, change the checkout button color from green to blue when using the Embedded or…

1 19 20 21 22 23 113