WP Simple Pay: Add More Aggressive Rate Limiting
Changes the various default rate limit settings.
Force nwwp Colour Scheme
Makes sure all users use this
WP Simple Pay: Custom Webhook Handling Example
An example of handling the `coupon.updated` webhook event. For a full list of available events see:…
RT7 Official - Maintenance Mode
RT7 Official Maintenance Mode
Add Campaign Creator Name Donation Export
In this example, the campaign creator's name is added to the Donations export, so it's easy…
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:…
Disable Wordpress image compression
// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…
On Add to Cart Event in WooCommerce
Adds the cancellation event to stop the Browse Abandonment campaign for your push subscribers in the…
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…
Adding a Custom Filter when using Other SMTP Setting
This snippet will help in troubleshooting steps from "SMTP Error: Could not authenticate".
Show Admin Bar
The code below shows the admin bar for logged in users who do not have these…
Move WooCommerce Category Description Below Products
The following snippet moves the WooCommerce description from the default location (page header subheading) to below…
Disable the delivery of SEO Email Reports
This snippet can be used to disable the delivery of SEO Email Reports.
WP Simple Pay: Hide reCAPTCHA Badge
Hide the reCAPTCHA badge and add links to the privacy policy and terms of service. Adds…
Customer Order Note for WooCommerce Products
Inserts a note field next to the add-to-cart button on every WooCommerce product page. Customers can…