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…

Save images as WEBP

/** * Convert Uploaded Images to WebP Format * * This snippet converts uploaded images (JPEG,…

Disable Wordpress image compression

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

WP Simple Pay: Custom Button Color

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

Change the redirect URI when using Google App’s OAuth

If you prefer not to use the default OAuth redirect URI (connect.wpmailsmtp.com) for added security and…

Adding a Custom Filter when using Other SMTP Setting

This snippet will help in troubleshooting steps from "SMTP Error: Could not authenticate".

Increase the Number of Posts Imported Per Batch from Yoast SEO Plugin

This filter can be used to increase the default number of posts imported per batch from…

<10

Remove Specific Taxonomy From Public Taxonomies List

This filter can be used to remove the 'genre' taxonomy from the public taxonomies list.

<10

Prevent AIOSEO From Outputting a rel=”prev” Link

Prevent AIOSEO from outputting a rel=”prev” link

<10

Exclude All Posts of a Category from News Sitemap

This snippet can be used to exclude All Posts of a Category from News Sitemap. Note:…

<10

Remove HealthAndBeautyBusiness Schema

This snippet removes HealthAndBeautyBusiness Schema

<10

Disable email reports

This filter can be used to disable email reports.

<10
1 32 33 34 35 36 190