- Jan 8, 2018
- 2,276
- 450
- 83
theme5s 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; $woo =...
Read more about this resource...