How can I delete product name and price from the featured collection?

Hi, how can I remove the product name and price from the featured collection? I use the Sense theme.

Should be looks like this:

…but now its like this:

1 Like

Hi @LeviHUN98

Please go to your Online store > Themes > Edit code > open theme.liquid file, add this code after tag

{% if template == 'index' %}

{% endif %}

Hi @LeviHUN98

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

Hi @LeviHUN98

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

#Slider-template–20178467946824__2f803d45-cb59-4c7c-bf7a-19eb18b98e22 .card__information {

display: none;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

it works, but the items not clickable anymore :confused:

sektorseven.hu

1 Like

Hi @LeviHUN98

Please go to your Online store > Themes > Edit code > open theme.liquid file, add this code after tag

{% if template == 'index' %}

{% endif %}

You can try again with this code:

#Slider-template–20178467946824__2f803d45-cb59-4c7c-bf7a-19eb18b98e22 .card__information {

opacity: 0;

}

Thanks for the info, check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.collection.section-template--20178467946824__2f803d45-cb59-4c7c-bf7a-19eb18b98e22-padding .card__content {
    display: none !important;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!