Search results for: admin
Minimalistic Admin Bar
This code snippet allows you to customize the WordPress admin bar by removing the WordPress logo,…
Disable Admin Notices WordPress
Completely removes all admin notices from the WordPress dashboard, * including core WordPress notices and those…
Admin Bar - Updates (copy)
Show updates in Admin Bar
Admin Bar - Updates
Show updates in Admin Bar
Change "Howdy Admin" in Admin Bar
Customize the "Howdy" message in the admin bar.
Pre-approval Emails
Email the admin and customer when a pre-approval payment has been made.
Enforce 2FA for Admins
The script enforces 2FA for the Admin Users. Just add this code snippet in Functions File.
MemberPress: Add Custom Field to Transactions Table
This code snippet will add data collected through a custom field on MemberPress registration forms to…
Completely Disable Comments
Disable comments for all post types, in the admin and the frontend.
Add duplicate link to admin bar menu
Extend the WPCode duplicate snippet (https://library.wpcode.com/snippet/7oqnzxow/) with an admin bar menu item. The duplicate snippet needs…
Fix LearnPress conflict that hides AIOSEO tabs on settings pages
LearnPress hides the tabs of AIOSEO by loading its Vue assets on our pages. This snippet…
Copy Donation Receipt To Admin
Send the donation receipt to the site admin as well.
Disable Full Site Editing (FSE)
Prevent any user from making changes to the site using the Full Site Editor.
Completely Disable Comments
add_action('admin_init', function () { // Redirect any user trying to access comments page global $pagenow; if…
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');