Variable Pricing Dropdown
Convert variable prices from radio buttons to a dropdown
WPCode Add New Snippet Skip Library Screen
This snippet enables you to skip the snippet library screen when adding a new snippet in…
Disable the space key with the special CSS class
This code snippet disables the space key. When a user presses the space key in these…
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');
WP Simple Pay: Add Custom CSS Classes to the Payment Button
"Payment Button" refers to the button that launches an On-site Overlay or Stripe Checkout Payment Form.
RT7 Official - Maintenance Mode
RT7 Official Maintenance Mode
Prevent Duplicate Cart Items
Prevents the same item from being added to the cart multiple times.
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…
On Add to Cart Event in WooCommerce
Adds the cancellation event to stop the Browse Abandonment campaign for your push subscribers in the…
Combine and Minify CSS
Combine and Minify CSS
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:…
Add PDF to purchase receipt
Attaches a PDF to the email customers receive when they purchase
Disable the delivery of SEO Email Reports
This snippet can be used to disable the delivery of SEO Email Reports.
Disable Wordpress image compression
// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…