Support » Plugin: WooCommerce » The link Become a Vendor

  • Resolved esobol

    (@esobol)


    Hello !

    I would like to customize my Woocommerce menu tab, in particular the tab “Orders”. I followed this instruction https://www.atomicsmash.co.uk/blog/customising-the-woocommerce-my-account-section/

    But inside they have all tabs like this :
    /**
    * Edit my account menu order
    */

    function my_account_menu_order() {
    $menuOrder = array(
    ‘orders’ => __( ‘Your Orders’, ‘woocommerce’ ),
    ‘downloads’ => __( ‘Download’, ‘woocommerce’ ),
    ‘edit-address’ => __( ‘Addresses’, ‘woocommerce’ ),
    ‘edit-account’ => __( ‘Account Details’, ‘woocommerce’ ),
    ‘customer-logout’ => __( ‘Logout’, ‘woocommerce’ ),
    ‘dashboard’ => __( ‘Dashboard’, ‘woocommerce’ )
    );
    return $menuOrder;
    }
    add_filter ( ‘woocommerce_account_menu_items’, ‘my_account_menu_order’ );

    I don’t know how to integrate correctly the tab “Become a vendor” which I have with WC Vendors plugin, I already tried this one:
    ‘become-vendor’ => __( ‘Devenir vendeur’, ‘woocommerce’ ),
    but it doesn’t work then, when you click on it.

    Could you please help me ?
    I already contacted WC Vendors support but they say it is out of their support scope.
    The screenshot of my Woocommerce menu: https://ibb.co/RjR52Q6

    Thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘The link Become a Vendor’ is closed to new replies.