AbanteCart Community

Shopping Cart Operations => Support => Template Support => Topic started by: emanuelben616 on December 07, 2015, 02:54:08 PM

Title: Go to menu for mobile
Post by: emanuelben616 on December 07, 2015, 02:54:08 PM
hi,
  So i have search this forum of how to edit the go to menu for mobile devices, but i haven't found anyone that has a solution. I thought that maybe i could go to the language definition and change the name but i didn't find it there as well. Is there anyway to change to words, like maybe to categories or something? maybe in the code?
Title: Re: Go to menu for mobile
Post by: eCommerce Core on December 08, 2015, 07:46:05 AM
This text is in the JavaScript and executed only on mobile screen
See https://github.com/abantecart/abantecart-src/blob/master/public_html/storefront/view/default/javascript/custom.js
Line #56.

Code: [Select]
    $("<option />", {
        "selected": "selected",
        "value": "",
        "text": "Go to..."
    }).appendTo("nav.subnav select");