Jump to content

[SOLVED]Cant find where to edit product page


Recommended Posts

I want to change those three things but i cant find where :(

Please help me !

 

They all ar in product page !

 

1. Change color of prduct name

2.Change yellow color of box ''More info'' in the bottom of image

3. Also i want to remove add to cart button

post-551297-0-25507400-1367513528_thumb.png

Edited by johnxl (see edit history)
Link to comment
Share on other sites

iPod nano:

 

<h1>{$product->name|escape:'htmlall':'UTF-8'}</h1>

 

add to cart:

 

{if (!$allow_oosp && $product->quantity <= 0) OR !$product->available_for_order OR (isset($restricted_country_mode) AND $restricted_country_mode) OR $PS_CATALOG_MODE}
   <span class="exclusive">
 <span></span>
 {l s='Add to cart'}
   </span>
  {else}
   <p id="add_to_cart" class="buttons_bottom_block">
 <span></span>
 <input type="submit" name="Submit" value="{l s='Add to cart'}" class="exclusive" />
   </p>
  {/if}

 

more info:

 

<ul id="more_info_tabs" class="idTabs idTabsShort clearfix">
 {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if}
 {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if}
 {if $attachments}<li><a id="more_info_tab_attachments" href="#idTab9">{l s='Download'}</a></li>{/if}
 {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if}
 {if isset($product) && $product->customizable}<li><a href="#idTab10">{l s='Product customization'}</a></li>{/if}
 {$HOOK_PRODUCT_TAB}
</ul>
<div id="more_info_sheets" class="sheets align_justify">
{if isset($product) && $product->description}
 <!-- full description -->
 <div id="idTab1" class="rte">{$product->description}</div>
{/if}

Link to comment
Share on other sites

  • 6 months later...

thanks for the response, in which file would that be?

and 1 last question to rule them all: when i change the color of the short description, the color is correctly changed in the products page, but it remains with the default color in the product list when i use "seach" or click in the category, how can that be changed?

regards

Link to comment
Share on other sites

  • 2 years later...
×
×
  • Create New...