GPL5U
Administrative
Staff member
Administrator
Theme5s Lover
Trusted Uploader
Decoding Master
Reputation: 100%
gpl5u submitted a new resource:
Rename WooCommerce in WordPress admin - How to rename/change menu WooCommerce in WordPress admin
Read more about this resource...
Rename WooCommerce in WordPress admin - How to rename/change menu WooCommerce in WordPress admin
If you’re setting up an online shop for a client, sometimes it’s good to mask that you’re using software like WooCommerce, just so it looks like a more custom job.
Just add this to yourfunctions.php
in your theme and rename where I have “Store Settings” to what ever you want!
Code:// Rename WooCommerce to Shop add_action( 'admin_menu', 'rename_woocoomerce', 999 ); function rename_woocoomerce() { global $menu; // Pinpoint menu item $woo =...
Read more about this resource...