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
Remove Customer Role From Excluded Roles
This filter can be used to remove the customer role from the excluded roles
Continue Shopping Button
Adds a "Continue Shopping" button to the left of the Update/Save Cart buttons on checkout.
Change user role for buyers
This is useful if, for example, you want buyers to be able to access dedicated content…
Hide Admins from being tracked
Adds a function that will allow you to properly add all your tracking scripts and stop…
Custom drag and drop
Allows you to drag and drop to reorder posts in the WP backend.
Add WPCode Custom Field Smart Tag
Add a custom smart tag for the WPCode scripts metabox that outputs the value of a…
WP Simple Pay: Create WordPress User After Payment (Lite)
Creates a new WordPress user when one-time payment is made with WP Simple Pay Lite.
Button - Add to cart to Buy Now
add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) { if ( 'Add to cart' == $text ) { $text…