View Single Post
  #3  
Old 12-02-2010, 05:39 AM
  mizNRG's Avatar 
mizNRG mizNRG is offline
 

Senior Member
  
Join Date: Jun 2010
Posts: 157
 

Default Re: Adding links/pages to Special.tpl

Thanks for your reply. I cleared my cache as suggested w/ no results. I also checked my skin files and there are none (I'm using the basic 3-column skin). Below is the code I'm working with in
/common_files/customer/special.tpl. The red type is what I added. I'm trying to create a link to a pdf file. Chances are I could be missing something basic here so I apologize ahead of time if I am. Thanks for any help!
Code:
{* $Id: special.tpl,v 1.2 2010/06/28 05:07:29 slam Exp $ vim: set ts=2 sw=2 sts=2 et: *} {capture name=submenu} {if $active_modules.Manufacturers ne "" and $config.Manufacturers.manufacturers_menu ne "Y"} <li><a href="manufacturers.php">{$lng.lbl_manufacturers}</a></li> {/if} <li><a href="/admin/getfile.php?file=%2Fpdf%2FK-Line%20Catalog%20212.pdf>K-Line Catalog 212</a></li> {if $active_modules.Gift_Certificates ne ""} {include file="modules/Gift_Certificates/gc_menu.tpl"} {/if} {if $active_modules.Gift_Registry ne ""} {include file="modules/Gift_Registry/giftreg_menu.tpl"} {/if} {if $active_modules.Feature_Comparison ne ""} {include file="modules/Feature_Comparison/customer_menu.tpl"} {/if} {if $active_modules.Survey ne ""} {include file="modules/Survey/menu_special.tpl"} {/if} {if $active_modules.Special_Offers ne ""} {include file="modules/Special_Offers/menu_special.tpl"} {/if} {if $active_modules.Sitemap ne ""} {include file="modules/Sitemap/menu_item.tpl"} {/if} {if $active_modules.Products_Map ne ""} {include file="modules/Products_Map/menu_item.tpl"} {/if} {/capture} {if $smarty.capture.submenu|trim} {capture name=menu} <ul> {$smarty.capture.submenu|trim} </ul> {/capture} {include file="customer/menu_dialog.tpl" title=$lng.lbl_special content=$smarty.capture.menu additional_class="menu-special"} {/if}
__________________
X-Cart 4.4.4 Gold
Reply With Quote