Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I want to move the "you may also like" section under the product images in product page. You can see the second image below for reference. It's important that the product description text to the right stays there.
my store: https://r1vex.myshopify.com/products/emil-randig-strandstol-taupe
Solved! Go to the solution
This is an accepted solution.
May I suggest to update code these steps:
1. Go to Store Online-> theme -> edit code
2. Layout/theme.liquid
3. Add code below to end of file and before </body> tag
{% if template contains 'product' %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".product__media-wrapper").append($('product-recommendations'))
});
</script>
{% endif %}
@manbru You want to change the view like this -
Then you have to do coding in the product-template to show the You may also like section below the product images.
This is an accepted solution.
May I suggest to update code these steps:
1. Go to Store Online-> theme -> edit code
2. Layout/theme.liquid
3. Add code below to end of file and before </body> tag
{% if template contains 'product' %}
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".product__media-wrapper").append($('product-recommendations'))
});
</script>
{% endif %}