How can I remove the two links that appear under the product description?

Hello!

How can I remove the two links that appear under the product description?


 

> Do you have any questions concerning this product?
> Further products

Thank you!

You have to remove the block “frontend_detail_description_links”.

Create a new theme, and make a new file named ‘description.tpl’ in the folder frontend/detail/tabs in your theme (look at Bare/frontend folder structure) with the following content:

{extends file="parent:frontend/detail/tabs/description.tpl"}

{* Empty the links in the description *}

{block name='frontend_detail_description_links'}
{/block}

Activate your new theme, clear the cache, and links should no longer display.

1 „Gefällt mir“

Thank You very much!
Your answered really helped me.