How to remove "Full details" on product description on homepage

Hello Shopify,

I’m trying to remove the 'full details ->" link on the bottom of my featured product that is displayed on the homepage.

I have tried add this code below to the bottom of theme.scss.liquid but it has not worked.

.product__more-details {
display: none;
}

Any solutions? I using debutify 2.0.2 theme

Thanks,

Tim

Hi there, if you really don’t want to show it up you can use the !important in your css - but be aware this will hide all the classes no matter if its the homepage or product page:

.product__more-details {
     display: none!important;
}

or you could comment the html out in the code of the featured product section.

1 Like

That didnt work for me. Please Advise…

I am using Debutiy. Tried inserting

.action-link {
display: none !important;
}

AND

.product__more-details {
display: none!important;
}

BOTH didnt work

Hi, I want (on the contrary) retrieve the “Full details” link on my home page, how I do that ?

@TheSmoothie

Do this to fix it in 20 seconds:

  1. In your Shopify Admin go to: online store > themes > actions > edit code
  2. Find Asset > theme.scss.liquid and paste this at the bottom of the file:
.template-index .product-single__meta .continue-link{
    display: none !important;
}

Please let me know whether it works.

Kind regards,
Diego

@Lauragml

Send me an email with more details and your store URL, I’ll help you out.

diego.boarutto.fortes@gmail.com

dosent work

@RavinKasra

Different themes may require a different code.

Kind regards,
Diego

step one:

go to themes, edit code, Product-template-liquid

![Skjermbilde (115).png|1366x768](upload://mJi1F9M0hfPGdSVIbdupfdfuvc5.png)

click ctrl-F and search “Full” and delete where i have marked:)

That’s a good one, but what if I want the description of the product to be shown? Not just delete the view full details :slightly_smiling_face: