View Single Post
  #156  
Old 03-01-2012, 09:17 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Ability Template v4.4.x

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"}
__________________
xcartmods.co.uk
Reply With Quote