wolxor
Forum Replies Created
-
Hi,
yes, the option is enabled, but the behavior is the same.
Thank you very much. That was the cause of the problem.
The only issue now is that when searching for a product with a translation, the results are displayed in all the languages. However, this is not the intended outcome, as only the results with the actual language translation should appear.
Could you please advise me on how to resolve this issue?
Thank you in advance
Thank you so much,
now the system correctly finds the products, even those that are not translated. The only small issue is that, for example, when I’m on the Italian version of the site and click on a product that isn’t translated, I get redirected to the English page, which also changes the site interface language to English.For example, if I search for 00L0290699E on the Italian version of the site, I’m redirected to the English page https://italtools.com/product/knife-holder-head-167/ even though there’s an Italian version available at https://italtools.com/it/prodotto/knife-holder-head-167/.
In this case, the product appears to be translated, but it actually isn’t — the product description is only in English. However, since the description is the same for all products, I translated it within the template by dynamically inserting the product name.
Thank you very much for your reply.
I’ve implemented the code modification, but unfortunately it doesn’t seem to be working. I also noticed something else: specifically, all the products that are translated into all languages are variable products, while those uploaded only in English are simple products.
Is there any operation that could unlock the situation after modifying the code? I’ve already tried clearing the cache.Forum: Plugins
In reply to: [Appointment Hour Booking - Booking Calendar] > converted into “> ;”I solved this problem by modifying the code in this way:
var cpahb_max_quantity = 9; # set the max+1 jQuery(document).one("showHideDepEvent", function () { (function ($) { function removecapacity() { $(".ahbfield_quantity option").each(function () { if (Math.max($(this).val(), cpahb_max_quantity) == $(this).val()) { $(this).remove(); } }); } $(".ahbfield_service").bind("change", function () { removecapacity(); }); removecapacity(); })(jQuery); });