View Single Post
  #237  
Old 05-02-2012, 03:09 AM
 
JacksmithxD JacksmithxD is offline
 

X-Adept
  
Join Date: Oct 2010
Posts: 400
 

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

Quote:
Originally Posted by David-Allan
Hey Phil,

I'm trying to integrate Commentics with your theme, I followed all the instructions in the install file but I don't see any change on the site. Should their be a new tab with comments or am I missing something?

Cheers

D-A

Depending on the tabs above or below edit skin/ability/custom/addons/tabs/tabs_below.tpl

Find the following code:
Code:
{* Product Description *} {if $config.Ability_Template.abi_product_descr eq "Y"} <li><a href="#" rel="#abi_ptab_1"><h3>{$lng.lbl_description}</h3></a></li> {/if}
Then add this code below:
Code:
{* Commentics *} {if $active_modules.Commentics && $config.Commentics.commentics_products eq "Y"} <li><a href="#" rel="#abi_ptab_9"><h3>{$lng.lbl_comments}</h3></a></li> {/if}

then at the very bottom just before
Code:
</div>
add the following:

Code:
{* Commentics *} {if $active_modules.Commentics && $config.Commentics.commentics_products eq "Y"} <div id="abi_ptab_9" class="abi_ptab_content"> {include file="modules/Commentics/commentics_product.tpl"} </div> {/if}
__________________
Xcart 4.5.2
Reply With Quote