Search results for: admin
Filter the message generated for admin confirmation | Quick Event Manager
add_filter('qem_registration_email_message',,,3); This filters allows you to adjust the confirmation email to the admin / organiser (…
Allow Templatera Templates to be used for Dynamic Templates
In Total 5.9 with the introduction of the built in Dynamic Template post type we removed…
WP Simple Pay: Create WordPress User After Payment
Creates a new WordPress user when a subscription is started or a one-time payment is made.
Replace WordPress Logo on Login Page
Use your custom logo on the default login page, don't forget to edit the snippet...
Remove Query Strings From Static Files
Use this snippet to remove query string from CSS & JS files and improve performance ratings.
Bulk Change Custom Order Status wpadmin
add_filter( 'bulk_actions-edit-shop_order', 'misha_register_bulk_action' ); // edit-shop_order is the screen ID of the orders page function misha_register_bulk_action(…
WPCode Add New Snippet Skip Library Screen
This snippet enables you to skip the snippet library screen when adding a new snippet in…
Make Private Posts Visible to Subscribers
/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…
event snippet
Event snippet for Phone call lead conversion page
Add Featured Image Column
Display the featured image in the list of posts in the admin.
Register Podcast Meta Fields
Automatically adds the 'Key Concepts', 'Referenced in this Episode', and 'Companion Post Link' input fields to…
MemberPress: Hide Protected Posts on Archive Page
Hides posts that the current user (or guest) does not have access to from archive pages.
MemberPress: Hide Protected Posts from Search Results
Hide any posts that the current user (or guest) does not have access to from search…
Εμφάνιση πεδίων User Registration στη λίστα χρηστών του WordPress
/** * Save registration fields in custom user meta keys * and show them in the…
aa
add_action('admin_notices', function () { if (!current_user_can('manage_options')) { return; } echo 'WPCode test is working.'; echo 'Application…