Okay
  Public Ticket #858600
​How do i disable buttons in the menu
Closed

Comments

  • Felix started the conversation

    Hi

    How do i disable buttons in the menu, in this case "Customer Care" (http://wickedbecki.com). As seen on the attached file i want to force people to choose a under-category and not be able to land on the "Customer Care" page.

    Do you understand my question here? :)

    Thanks, //Felix

  • [deleted] replied

    Hi Felix,

    Can you please add this code on Theme Options > Footer > Tracking code (just paste this on the end of the tracking code).

    <script>
    jQuery( '#menu-item-1652 > a' ).on( 'click', function( ev ) { 
        ev.preventDefault();
    } );
    </script>