View Single Post
  #3  
Old 07-08-2010, 04:45 PM
 
SID357 SID357 is offline
 

eXpert
  
Join Date: May 2010
Posts: 205
 

Default Re: Locating Parent Files in Firebug?

Thanks for the reply Steve.

so, categories.tpl shows...


Code:
{* $Id: categories.tpl,v 1.35 2009/05/12 07:37:15 max Exp $ vim: set ts=2 sw=2 sts=2 et: *} {capture name=menu} {if $active_modules.Flyout_Menus} {include file="modules/Flyout_Menus/categories.tpl"} {assign var="additional_class" value="menu-fancy-categories-list"} {else} <ul> {foreach from=$categories_menu_list item=c name=categories} <li{interline name=categories}><a href="home.php?cat={$c.categoryid}" title="{$c.category|escape}">{$c.category}</a></li> {/foreach} </ul> {assign var="additional_class" value="menu-categories-list"} {/if} {/capture} {include file="customer/menu_dialog.tpl" title=$lng.lbl_categories content=$smarty.capture.menu}

I see the last line you referred to. How do I get to the guts?

I'm not too bad at html, but the whole smarty thing and locations are puzzling.

I can edit it just fine in Firebug, but obviously that does little good in the grand scheme of things. Seems humorous that I can find and edit exactly what I'm looking for in a free add on, but can't find jack squat in 500 dollar software. lol
Reply With Quote