Home Forums WC Vendors Free Support Remove WC Vendor Logo "w" at the top left from add product page

NOTICE: We've Moved to a Ticket System for Support

As of August 31, 2017 (12am EST) our support forums will be retired (read-only), and we will be moving to a support ticket system.  This will allow us to better organize and answer support requests, and provide a more personalized experience as we assist our customers.

For the time being, we will leave our forums open for reading and learning while we work on creating a more robust Knowledge Base for everyone to use.

If you are a WC Vendors Pro customer please open a support ticket here. 

If you are a WC Vendors user please open a support ticket on the Wordpress.org forums.

The information on this forum is outdated and in most instances no longer relevant. Please be sure to check our documentation for the most up to date information.

https://docs.wcvendors.com/

Thank you to all of our customers!

 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #16982
    md asad
    Participant

    kindly help me
    how to remove wc vender logo from top left side at add new product page
    or disable them

    #16987
    WC Vendors Support
    Participant

    That’s a standard part of the WordPress back end. You’d have to upgrade to WC Vendors Pro in order to move to the front end.

    Cheers

    #17506
    Jordan
    Participant

    Ben’s right. It’s a WordPress thing, not a WC Vendors thing.

    But to answer your question, use something like this: (added to your theme’s functions.php file)

    
    // Customize the top toolbar
    function wcv_toolbar() {
    	global $wp_admin_bar;
    	$wp_admin_bar->remove_menu('about');
    	$wp_admin_bar->remove_menu('wp-logo');
    	$wp_admin_bar->remove_menu('documentation');
    	$wp_admin_bar->remove_menu('support-forums');
    	$wp_admin_bar->remove_menu('feedback');
    }
    add_action('wp_before_admin_bar_render', 'wcv_toolbar');
    

    More info: Plugin API/Action Reference/wp before admin bar render

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘WC Vendors Free Support’ is closed to new topics and replies.