• Resolved Andrea

    (@licoreo)


    hello,
    i need to move wp menu cart button from the last place of menu to first position

    currently i have
    [ button 1 ] [button 2 ] [wp menu cart]

    i need to order in

    [wp menu cart] [ button 1 ] [button 2 ]

    is possible?

    thank you for your time

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Yes, we have a filter for this, wpmenucart_prepend_menu_item. Here’s how to activate it:

    
    add_filter( 'wpmenucart_prepend_menu_item', '__return_true' );
    

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

    Hope that helps!

    Thread Starter Andrea

    (@licoreo)

    it works, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘order menucart on menu’ is closed to new replies.