Quote:
Is there a way to have the description tab on the product page to include the short and full description in the same area? It would be handy as a search may take the visitor directly to the product page and some details are only in the short description.
|
If using product tabs...
skin/ability/custom/addons/tabs/tabs_below.tpl
Replace...
Code:
<div id="abi_ptab_1" class="abi_ptab_content descr">
{$product.fulldescr|default:$product.descr}
</div>
With something like...
Code:
<div id="abi_ptab_1" class="abi_ptab_content descr">
<p>{$product.descr}</p>
{if $product.fulldescr ne ""}<p>{$product.fulldescr}</p>{/if}
</div>
Quote:
My other task is, I'm trying to get the pagination at the bottom of the page as well as the top on the tabular layout. Any help would be most appreciated.
|
skin/ability/customer/main/subcategories.tpl
After...
Code:
{include file="customer/main/products.tpl" products=$cat_products}
Insert...
Code:
{include file="customer/main/navigation_tabular.tpl"}
In skin/ability/customer/main/search_result.tpl
After...
Code:
{include file="customer/main/products.tpl"}
Insert...
Code:
{include file="customer/main/navigation_tabular.tpl"}