How do I add an image above the product name on my product page?

How do I add an image above the product name on my product page?

FelaC
Tourist
16 0 2

Ekran Resmi 2024-07-05 02.20.49.png

 

On my product pages, I want to add an image above the product title.

Here, there will be a favorite review of my favorite customer.

I want to scroll everything else down a bit and add the image. How can I do that?

Store's URL: https://buythewall.com/products/trump-adidas-collab-hoodie

Replies 3 (3)

oscprofessional
Shopify Partner
16343 2438 3179

Hello @FelaC 

 

To add an image above the product name on your Shopify product page, you'll need to modify your theme's Liquid code. Here are the steps to do this:

1. Access the Theme Editor:

  • From your Shopify admin, go to Online Store > Themes.
  • Find the theme you want to edit and click Actions > Edit code.

2. Locate the Product Template:

  • In the Sections or Templates directory, find the main-product.liquid file. It might also be named something similar, depending on your theme (e.g., product-template.liquid).

3. Modify the Liquid Code:

  • Open the product.liquid file.
  • Locate the code for the product name. This is often within a <h1> or <h2> tag with a class like product-title. It might look something like this:
  • <h1 class="product-title">{{ product.title }}</h1>

4. Insert the Image Code:

  • Above the product name code, insert the HTML for your image. You can use the following code snippet, replacing image_url with the actual URL of the image you want to display:

<img src="{{ 'image_url' | asset_url }}" alt="{{ product.title }} Image" class="product-page-image">

  • For example, it should look like this:

<img src="{{ 'image_url' | asset_url }}" alt="{{ product.title }} Image" class="product-page-image">
<h1 class="product-title">{{ product.title }}</h1>

5. Save and Preview:

  • Save the changes to the main-product.liquid file.
    Go to your product page on your store to preview the changes and ensure the image appears above the product name.

6. Adjust Styling (Optional):

  • If needed, you can adjust the styling of the image by adding CSS rules in your theme's CSS file (usually found in assets/base.css).

For example:

 

.product-page-image {
width: 100%;
max-width: 300px;
margin-bottom: 10px;
}
By following these steps, you can successfully add an image above the product name on your Shopify product page.

 

 

 

 

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
FelaC
Tourist
16 0 2

Ekran Resmi 2024-07-05 11.36.20.png

It broked I think. Doesn't show up.

FelaC
Tourist
16 0 2

I found the code you said in the main.product liquid file. I pasted the image_url code you showed right above that code.

I uploaded my photo to Shopify My Content. I copied the URL and pasted it into the image_url section. I saved and refreshed my page, but this is what happened