Jump to content

Footer block - turning on and editing


Recommended Posts

  On 3/27/2013 at 1:31 PM, vekia said:

you haven't got {$hook_footer} in your template? If so, you must add it into tpl file and then transplant modules there (modules -> positions -> transplant)

 

but maybe i don't understand your problem well...

 

Sorry for this tardy replay - forum updates were going to my junk mail (sigh).

 

WHICH template file should I look in to find if I have the HOOK_FOOTER? If it's in many, any one will do.

Link to comment
Share on other sites

  On 4/4/2013 at 12:42 PM, Maury Markowitz said:

Sorry for this tardy replay - forum updates were going to my junk mail (sigh).

 

WHICH template file should I look in to find if I have the HOOK_FOOTER? If it's in many, any one will do.

 

it may sounds weirdy... but you must check footer.tpl file ;)

 

default footer.tpl file looks like:

 

 {if !$content_only}
   </div>
<!-- Right -->
   <div id="right_column" class="column grid_2 omega">
 {$HOOK_RIGHT_COLUMN}
   </div>
  </div>
<!-- Footer -->
  <div id="footer" class="grid_9 alpha omega clearfix">
   {$HOOK_FOOTER}
   {if $PS_ALLOW_MOBILE_DEVICE}
 <p class="center clearBoth"><a href="{$link->getPageLink('index', true)}?mobile_theme_ok">{l s='Browse the mobile site'}</a></p>
   {/if}
  </div>
 </div>
{/if}
</body>
</html>

 

and as you see - {$HOOK_FOOTER} is defined there

Link to comment
Share on other sites

×
×
  • Create New...