Home Forums WooCommerce Bookings Integration Pro Dashboard – Bookings

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 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #68817
    Eric Yee
    Participant

    Hi Team –

    How do I edit the items that are available in the Pro Dashboard Menu? I’m looking to change the word from ‘Orders’ to something else.

    Also, as seen in screenshot, in the Bookings tab, I see Manage Resources, Calendar, and Add Product listed twice. Can I have this Bookings Tab just lead directly to the Calendar View? I don’t want to see these buttons. I would only like to see the calendar.

    Thanks!

    #68946
    Anna
    Member

    Hello Eric,
    I am checking on how to direct the Bookings tab to the Calendar..
    To change the ORDERS tab name to a different label, you can use this in your child theme functions.php:

    add_filter( 'wcv_pro_dashboard_urls', 'change_dashboard_labels' );
    function change_dashboard_labels( $dashboard_urls ){ 
    	if ( array_key_exists('order', $dashboard_urls ) ) $dashboard_urls[ 'order' ][ 'label' ] = 'New Name Here...';
    	return $dashboard_urls; 
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘WooCommerce Bookings Integration’ is closed to new topics and replies.