Add Custom Dynamic Variables
The Total theme allows you to use "Dynamic Variables" in various element text fields such as…
Explicit Fixed Width and Height
Explicit Fixed Width and Height for images
Move Jump to Recipe above featured image in Genesis
/** * Ensures the "Jump to Recipe" button is added above the featured image. */ add_action(…
Save images as WEBP
/** * Convert Uploaded Images to WebP Format * * This snippet converts uploaded images (JPEG,…
Template: After Order Actions
This is a template that can be used to hook into the `edd_after_order_actions` hook, allowing developers…
Blog filter
Add a filter for blogs
Change the Payment Delimiter Inside Email Notifications
This snippet changes the default separator for payment details in emails.
Add custom CSS in the Admin
Use this snippet to add custom styles in the WordPress admin head. Add your CSS code…
Goal Tracking Pixel
This pixel tracks the unit conversions and revenue across all your push campaigns. This helps you…
Add WooCommerce upsells below the add-to-cart button
// add upsells below add-to-cart button add_action( 'woocommerce_single_product_summary', 'woocommerce_upsell_display', 40 );
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…
Focused Form Fields
This CSS snippet will make your fields focused on click.
Remove Address Line 2 from the Local SEO address output on the front end
This filter can be used to remove Address Line 2 from the Local SEO address output…
How to Add an Empty Dropdown to Dropdown Items
This snippet maintains a clean "--Select--" option without the zero price display when using the Dropdown…
Ensure Webfont is Loaded (Elementor)
add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );