Hi Scott,
This is definitely doable with a bit of code manipulation.
If you have some basic coding knowledge, just follow the steps below and that’ll put the product title above the image for each product on the page, otherwise, you may want to hire somebody to do it for you. I do offer such services, send me a message and I’ll handle it for you, contact/email info in signature.
Onto the steps, in your dashboard, click “Online Store”, then click the 3 dots next to the “Customize” button, and then click “Edit code” in the context menu.
The div you’re looking for is a div with a class of “card__content”, this is the div that contains both the product title and the product price.
You’ll need to copy this div and paste it just above its sibling div, its sibling div is the div that contains the product image (the class of this div will start with “card__inner” and may have some other text after that).
At this point, your product card will show an image along with the product title and the product price shown twice: once above the image and once below the image.
So now, you’ll want to remove the product price from above the image and the product title from below the image.
To remove the product price from above the image, do this: inside the div that was just pasted above the div that contains the product image, find a div with a class of “card-information” and either comment it out or delete it altogether. This will remove the price from above the image.
Now you’ll need to remove the title from under the image. To do that, inside the div that we copied earlier (the div with the class of “card__content”, located below the div that contains the product image), find an h3 tag, this is the tag that contains the product title, either comment it out or delete it. This will remove the product title from below the image.
And that’s it. Your product card should now consist of the product title, the product image below that, and the product price below that.
Hope that helps.