jasonlj Posted February 17, 2021 Share Posted February 17, 2021 Hi, i have some problem with core and front.js : There is a error 404 and i dont know why ? Someone can help me please ? (I use prestashop in a local server) Link to comment Share on other sites More sharing options...
jasonlj Posted February 17, 2021 Author Share Posted February 17, 2021 update : i deleted line : //# sourceMappingURL=front.js.map and //# sourceMappingURL=core.js.map and it fix the problem on other browser but not in mozilla 😕 Link to comment Share on other sites More sharing options...
MGWEB Posted July 26, 2021 Share Posted July 26, 2021 On 2/17/2021 at 12:34 PM, jasonlj said: update : i deleted line : //# sourceMappingURL=front.js.map and //# sourceMappingURL=core.js.map and it fix the problem on other browser but not in mozilla 😕 Hi, from where you delete? should I create also core.js.map ? Like I clone the file and add myself .map? Link to comment Share on other sites More sharing options...
YMadani Posted August 17, 2021 Share Posted August 17, 2021 Hello , Do you use an ajax function ? if it's yes, put your function in async:false to solve this problems on mozilla. $('.remove-from-cart').click(function () { var date = $(this).attr("id"); alert(date) $.ajax( { type: 'POST', async: false, url:'modules/formations/ajaxFormations.php', data: { "Remove" :date, }, success: function(data) { console.log(data); } }); }); Link to comment Share on other sites More sharing options...
jasonlj Posted August 23, 2021 Author Share Posted August 23, 2021 Hello, sorry, my problem is solved since months Sorry to waste your time, but thanks for the help ! Link to comment Share on other sites More sharing options...
Bearzilla Posted January 2, 2022 Share Posted January 2, 2022 Hi, how did you solved it ? I have the same issue, when i click on a product, I'm disconnected from my session and when I click on "add to cart" button nothing happens except my pointer taking a forbidden sign look. 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