Search results for: admin
Add Last Modified Column
Display the post last modified date in the admin.
Prevent AIOSEO from changing the category to the primary one
This snippet will prevent AIOSEO from changing the category to the primary one.
MFP > Deploy Show & Get Data
add_action('acf/save_post', 'add_show_children'); function add_show_children($post_id) { if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; if (!wp_is_post_revision($post_id) && 'show' ==…
Update Donation Summary
Often you might want to change the output of where a donation summary is outputted for…
Local pickup custom percentage discount in WooCommerce checkout
Offering discounts for local pickup is a great way to attract customers who are looking for…
to add WooCommerce WhatsApp Product Enquiry. NO API Used.
Post Intro How to Add a WooCommerce WhatsApp Enquiry Button (No API Used) In this blog…
Sort Events Category by Publish Date (Oldest First)
function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs…
Add Radio Boxes To Donation Form
/** * Add a collection of radio selections to the donation form. * * This snippet…
Show Active Plugins First
List active plugins first in the wp-admin list of plugins.
Add Multiple Checkboxes To Donation Form
This uses the "multi-checkbox" vs just "checkbox" for a single checkbox.
Disable SEO News Dashboard Widget
This filter can be used to Disable SEO News Dashboard Widget.
Hide the Email Test Menu Item in Settings
This snippet will hide the 'Email Test' tab from your WP Mail SMTP settings menu.
Allow Other WordPress Roles to View Email Logs
This snippet will allow you to manage the capabilities of roles allowed to view the site's…
Replace WordPress Logo on Login Page
Use your custom logo on the default login page, don't forget to edit the snippet...
Remove Line Breaks From CSV Exports
This snippet will remove the line breaks from CSV exports.