hey_flor Posted April 22, 2021 Share Posted April 22, 2021 Site URL: https://www.unsolomondo.com/ Hello everyone, this is my first interaction here. I'm trying to reorder my items in my "ProductItem-summary" section, I need to place my Size Chart next to my Size button and I can't do it. And I have also tried to reorder or navigation on the mobile: the price below the title and then the gallery and I do not get it. Can someone help me? You can view the Size chart here:https://www.unsolomondo.com/shop-men/hispanico-sangue password: Bernardomascherano Link to comment
tuanphan Posted April 24, 2021 Share Posted April 24, 2021 Hi. Add this to Settings > Advanced > Code Injection > Footer (last line) <script> $(document).ready(function() { $('section.ProductItem-additional a[href*="size-chart"]').insertAfter('.ProductItem-details .variant-option'); }); </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
hey_flor Posted April 25, 2021 Author Share Posted April 25, 2021 it works, thank you very much! 😃 For the location of the price I formulate it the same changing the names? Link to comment
tuanphan Posted April 26, 2021 Share Posted April 26, 2021 22 hours ago, hey_flor said: it works, thank you very much! 😃 For the location of the price I formulate it the same changing the names? With price, add this code <script> $(document).ready(function() { $('section.ProductItem-details .product-price').insertAfter('.ProductItem-details--mobile h1.ProductItem-details-title'); }); </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
hey_flor Posted April 27, 2021 Author Share Posted April 27, 2021 It works on the mobile, but the price disappears on the web Link to comment
tuanphan Posted April 28, 2021 Share Posted April 28, 2021 Remove above & add this new code <script> $(document).ready(function() { if (jQuery(window).width() < 767) { $('section.ProductItem-details .product-price').insertAfter('.ProductItem-details--mobile h1.ProductItem-details-title'); } }); </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
tuanphan Posted May 12, 2021 Share Posted May 12, 2021 On 5/8/2021 at 9:22 PM, hey_flor said: top thank!!!!! (Tablet) Do you want to place 4 nav items on 1 line? 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.