Jump to content

Content text in products


Recommended Posts

To hide the text you mention in your screenshot, you can edit this file: /themes/default-bootstrap/category.tpl

On line 51 replace this code: 

<span class="category-name">
    {strip}
    {$category->name|escape:'html':'UTF-8'}
    {if isset($categoryNameComplement)}
      {$categoryNameComplement|escape:'html':'UTF-8'}
    {/if}
    {/strip}
</span>

with this:

<!-- <span class="category-name">
    {strip}
    {$category->name|escape:'html':'UTF-8'}
    {if isset($categoryNameComplement)}
      {$categoryNameComplement|escape:'html':'UTF-8'}
    {/if}
    {/strip}
</span> -->

To remove the black background you can edit this file /themes/default-bootstrap/css/category.css

On line 11, edit this code:

background-color: #464646 !important;

with this code:

background-color: none !important;
  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...