Add Multiple Checkboxes To Donation Form

This uses the "multi-checkbox" vs just "checkbox" for a single checkbox.

Blog filter

Add a filter for blogs

Save images as WEBP

/** * Convert Uploaded Images to WebP Format * * This snippet converts uploaded images (JPEG,…

Add custom CSS in the Admin

Use this snippet to add custom styles in the WordPress admin head. Add your CSS code…

<10

Use Page Template For Campaigns

Instead of using the Post template for campaigns, use the Page template as a fallback.

Goal Tracking Pixel

This pixel tracks the unit conversions and revenue across all your push campaigns. This helps you…

Change Editor Default Image Size

Set the default image size to full instead of large in the block editor.

<10

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…

Change Country Field To Hidden

Change the Country field in the donation form to a hidden field with a hard-coded default…

Ensure Webfont is Loaded (Elementor)

add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );

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…

<10

Add Image Alt Text automatic

function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…

Disable Custom Link Format of AIOSEO in the Block and Classic Editors

This snippet can be used to disable the custom link format that All in One SEO…

<10

Change the Default Taxonomy Name “aioseo-location-category”

This filter can be used to change the default taxonomy name “aioseo-location-category”.

<10
1 25 26 27 28 29 125