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:…
Force nwwp Colour Scheme
Makes sure all users use this
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…
Variable Pricing Dropdown
Convert variable prices from radio buttons to a dropdown
Prevent AIOSEO from changing the category to the primary one
This snippet will prevent AIOSEO from changing the category to the primary one.
Add Donor Comments To Donor Wall
This will display a donor comment with a donor's donation information on the donor wall in…
RT7 Official - Maintenance Mode
RT7 Official Maintenance Mode
Prevent Duplicate Cart Items
Prevents the same item from being added to the cart multiple times.
class DeleteUploadedFiles {}
The deleteuploadedfiles Class is designed to delete uploaded files subsequent to email notifications. This functionality is…
WP Simple Pay: Add Custom Field Data to Customer Metadata
Retrieve the value of a custom field and add it as metadata to the Stripe Customer…
Adding a Custom Filter when using Other SMTP Setting
This snippet will help in troubleshooting steps from "SMTP Error: Could not authenticate".
File Size Display
After the download content, shows a list of the download files and their sizes
WP Simple Pay: Custom Webhook Handling Example
An example of handling the `coupon.updated` webhook event. For a full list of available events see:…