Removing Product Description from Debut theme - Home Page - Featured Product Section!

Hey folks

Can someone please help me remove the Product Description from Featured Product Section in the Home Page? I am using the Debit Theme.

Pls note that I DO NOT want to remove Product Description from the Product page.

Thanks a lot

Hello,

To remove it:

  1. Edit featured-product.liquid, you can find this file under ‘Section’
  2. Search for this code ( May it’s available in line no. 285 )

          {% unless product == empty %}
            {{ product.description }}
          {% else %}
            {{ 'homepage.onboarding.product_description' | t }}
          {% endunless %}
        

  1. Remove or comment it

Thanks

Wow. Thanks @Guleria . You’re the man!