daninapoli Posted October 8, 2019 Share Posted October 8, 2019 (edited) Salve a tutti. Ho la necessità di non far vedere il prezzo nel modulo di ricerca del prodotto. Mi sapete indicare cosa andare a toccare ? Edited October 10, 2019 by daninapoli (see edit history) Link to comment Share on other sites More sharing options...
Antonio FaqEcommerce Posted October 9, 2019 Share Posted October 9, 2019 Ciao puoi spiegarti meglio? Non riesco a capire dove vuoi che non appaia, nei risultati o dove? Sopratutto che versione di PS usi? Link to comment Share on other sites More sharing options...
daninapoli Posted October 10, 2019 Author Share Posted October 10, 2019 praticamente quando cerchi un prodotto nella barra superiore, appena si inizia a scrivere si vedono i prodotti con i prezzi e io ho la necessità di toglierli... Link to comment Share on other sites More sharing options...
daninapoli Posted October 10, 2019 Author Share Posted October 10, 2019 ok ho risolto. ho modificato il file ps_searchbar.js Link to comment Share on other sites More sharing options...
Bobolr Posted February 9, 2021 Share Posted February 9, 2021 daninapoli. Riesci a dirmi cosa modificare nella ps_searchbar.js grazie Link to comment Share on other sites More sharing options...
daninapoli Posted February 9, 2021 Author Share Posted February 9, 2021 se non ricordo male , credimi questa volta purtroppo non ho scritto quello che ho fatto, ho tolto ".append($("<span>").html(product.price).addClass("price")" magari fai una copia del file lo modifichi e provi io vedo se per caso ho appunti. Link to comment Share on other sites More sharing options...
Bobolr Posted February 10, 2021 Share Posted February 10, 2021 15 ore fa, daninapoli dice: se non ricordo male , credimi questa volta purtroppo non ho scritto quello che ho fatto, ho tolto ".append($("<span>").html(product.price).addClass("price")" magari fai una copia del file lo modifichi e provi io vedo se per caso ho appunti. Grazie per l'info. ma nel ps_searchbar.js non ho quella riga. questo è il mio ps_searchbar.js credo comunque sia un Bug della 1.7.6.2 /* global $ */ $(document).ready(function () { var $searchWidget = $('#search_widget'); var $searchBox = $searchWidget.find('input[type=text]'); var searchURL = $searchWidget.attr('data-search-controller-url'); $.widget('prestashop.psBlockSearchAutocomplete', $.ui.autocomplete, { _renderItem: function (ul, product) { return $("<li>") .append($("<a>") .append($("<span>").html(product.category_name).addClass("category")) .append($("<span>").html(' > ').addClass("separator")) .append($("<span>").html(product.name).addClass("product")) ).appendTo(ul) ; } }); $searchBox.psBlockSearchAutocomplete({ source: function (query, response) { $.post(searchURL, { s: query.term, resultsPerPage: 10 }, null, 'json') .then(function (resp) { response(resp.products); }) .fail(response); }, select: function (event, ui) { var url = ui.item.url; window.location.href = url; }, }); }); Link to comment Share on other sites More sharing options...
daninapoli Posted February 10, 2021 Author Share Posted February 10, 2021 hai visto se nella cartella del tema hai un altro ps_searchbar.js ? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now