Create Additional Formats for the Date Field

Add custom date formats to the Date field in WPForms.

10+

Duplicate Posts and Pages

// Add the duplicate link to action list for post_row_actions // for "post" and custom post…

Add Accept Terms Field

Add a Terms and Conditions donation field, showing whether the donor accepted terms and conditions when…

Sticky header

/*Sticky header*/ #site-header { position: fixed; top:0; opacity: 0.98; } #main { margin-top: 70px !important; /*…

Append a Page to the Additional Pages Sitemap

This filter can be used to Append a Page to the Additional Pages Sitemap

10+

Disable Update Emails

// Disable auto-update email notifications add_filter('auto_core_update_send_email', 'disable_auto_update_emails', 10, 4); function disable_auto_update_emails($send, $type, $core_update, $result) { if…

Minimalistic Admin Bar

This code snippet allows you to customize the WordPress admin bar by removing the WordPress logo,…

Add Checkbox Field To Donation Form

Collect a checkbox field in the donation form.

Remove Google Fonts (Elementor)

add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );

Dynamically Change the SEO title of a Specific Post when the Metadata is Loaded

This filter can be used to dynamically change the SEO title of a specific post when…

10+

Remove Gutenberg Blocks Library CSS

Remove Gutenberg Block Library CSS from loading on the frontend

display user name in a menu

/** * Show a user's display name/user name in a WordPress menu. * Once this code…

Hide AlOSEO version number from the front end

This filter can be used to publicly hide the All in One SEO version number.

10+

Automatic CSS/JavaScript Cache Busting

Replace the `ver` query arg with the JavaScript/CSS file's last modified timestamp (WordPress CSS/JS Cache Busting)

1 14 15 16 17 18 112