Hello,
I would like to put price and add to cart below my product image. Theme is Minimal. Below is an example of exactly what I would like to accomplish.
Please help
Hello,
I would like to put price and add to cart below my product image. Theme is Minimal. Below is an example of exactly what I would like to accomplish.
Please help
Hello, @KetanKumar @dmwwebartisan @AvadaCommerce @Zworthkey
Site is https://indoorchef.myshopify.com/ password is: powcru
thanks
@inchef - can you please share your product page link? it needs code editing in the theme
{{ product.price | money }}
Navigate to Online Store->Theme->Edit code
Sections->/product-template.liquid
Find the Productphoto
4.Add Code as shown in the image
if you need any more help let me know.
Thank you
** @inchef **
output:
Hi @inchef ,
Please follow the steps below:
Code:
{{ 'products.product.regular_price' | t }}
{{ product.price | money }}
{% if product.compare_at_price > product.price %}
{{ 'products.product.sale_price' | t }}
<s>
{{ product.compare_at_price_max | money }}
</s>
{% else %}
{{ 'products.product.sale_price' | t }}
<s>
{{ product.compare_at_price_max | money }}
</s>
{% endif %}
{% include 'product-unit-price', variant: variant, available: true %}
{% form 'product', product, class: productform_class %}
{{ form | payment_terms }}
{% if section.settings.enable_payment_button %}
{{ form | payment_button }}
{% endif %}
{% endform %}
Hope it helps!
thank you, this worked!