Search results for: admin
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…
Add Featured Image Column
Display the featured image in the list of posts in the admin.
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…
WPBakery Collapse All Rows
Adds Collapse / Expand All Rows in WP Bakery Builder + Ave WP Theme
Remove Default jQuery
// Remove default WordPress jquery wp_deregister_script( 'jquery' ); //Remove jquery migrate add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); function…
Add a button to customer data
Add a button to retrieve all customer data.
Foodtruck
crée moi moi un plugin pour wordpress pour un foodtruck avec une commande pour fermer et…
Remove Product Notes For Specific Downloads
Remove a download's product notes from showing on the purchase confirmation page, the admin email, and…