Hi there!
I am looking to show the full product details instead of the “View full details” button on a Featured Product on my homepage. Sense theme. www.petson.co.uk password: 123
A user wants to display full product details directly on their homepage’s Featured Product section instead of requiring visitors to click a “View full details” button (using the Sense theme).
Two solutions were provided:
.product__view-details {
display: none;
}
This hides the button but doesn’t automatically show the full description.
{%- if product.description != blank -%}
<div>
{{ product.description }}
</div>
{%- endif -%}
Then add a media render snippet below that code block.
Both solutions require editing theme files. The second approach actually displays the description content, while the first only removes the button.
Hi there!
I am looking to show the full product details instead of the “View full details” button on a Featured Product on my homepage. Sense theme. www.petson.co.uk password: 123
Hello There,
.product__view-details {
display: none;
}
Go to your Online store > Themes > Edit code > Sections > open featured-product.liquid file
Copy this code
{%- if product.description != blank -%}
{{ product.description }}
{%- endif -%}
And paste it below this line of code
% render 'product-media-modal', product: product, variant_images: media_to_render %}
Save file and reload your store to check