frejafloobza Posted March 25, 2022 Share Posted March 25, 2022 Site URL: https://www.freja.ch/shop Hello! I need to change the wording of the subscription price. I would like to write: CH48.00 für 4Wochen Does anyone know how I can do this? Link to comment
tuanphan Posted March 26, 2022 Share Posted March 26, 2022 Hi, You mean change "alle" to "für"? frejafloobza 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
frejafloobza Posted March 26, 2022 Author Share Posted March 26, 2022 5 hours ago, tuanphan said: Hi, You mean change "alle" to "für"? Yes exactly! Link to comment
frejafloobza Posted March 28, 2022 Author Share Posted March 28, 2022 It would be great if you could help me here! 🙂 🙂 Link to comment
tuanphan Posted March 30, 2022 Share Posted March 30, 2022 On 3/26/2022 at 9:04 PM, frejafloobza said: Yes exactly! Try adding to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".grid-prices").html(function() { return $(this).html().replace("alle", "für"); }); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
frejafloobza Posted March 30, 2022 Author Share Posted March 30, 2022 6 hours ago, tuanphan said: Try adding to Settings > Advanced > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".grid-prices").html(function() { return $(this).html().replace("alle", "für"); }); }); </script> Thank you it worked. However when I open the subscription here: https://www.freja.ch/shop/p/abo-bakers-choice It is still alle and not für. How can I change that too? Link to comment
frejafloobza Posted March 30, 2022 Author Share Posted March 30, 2022 It worked in the shop but not in the product price description. See here: https://www.freja.ch/shop/p/abo-bakers-choice Also here I want to change it from alle to für. THANK YOU VERY MUCH! Link to comment
tuanphan Posted April 1, 2022 Share Posted April 1, 2022 Try this new code <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".product-price").html(function() { return $(this).html().replace("alle", "für"); }); }); </script> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
frejafloobza Posted April 3, 2022 Author Share Posted April 3, 2022 thank you very much. It works perfectly! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment