How can I place the price under product images in Minimal theme?

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

1 Like

Hello, @KetanKumar @dmwwebartisan @AvadaCommerce @Zworthkey

Site is https://indoorchef.myshopify.com/ password is: powcru

thanks

1 Like

@inchef - can you please share your product page link? it needs code editing in the theme


              {{ product.price | money }}
            

@inchef

  1. Navigate to Online Store->Theme->Edit code

  2. Sections->/product-template.liquid

  3. Find the Productphoto

4.Add Code as shown in the image

![Screenshot (6).png|1589x661](upload://uJ8TSGPZ4llKyoZY6egR7Z0wy2C.png)

if you need any more help let me know.

Thank you

1 Like

** @inchef **
output:

@inchef

you mean like this?

1 Like

Hi @inchef ,

Please follow the steps below:

  • Step 1: Go to sections > product-template.liquid file, find ‘product-single__prices’ and remove code:

  • Step 2: Find ‘class: productform_class’ and remove code:

  • Step 3: Find ’ class=“gallery” ’ and add code here:

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!

1 Like

thank you, this worked!