Header & Footer Smarty Errors

Discussion in 'Templates customization' started by sunseapromos, Sep 30, 2010.

  1. sunseapromos

    sunseapromos Member

    Joined:
    Apr 26, 2010
    Messages:
    72
    Hi,

    I just did my header and footer templates according to the directions. When I dial up my signup page I get the following:

    Fatal error: Smarty error: [in header.html line 15]: syntax error: unrecognized tag: config.root_surl (Smarty_Compiler.class.php, line 403) in /home/christia/public_html/amember/smarty/Smarty.class.php on line 1102

    Here is the code from my header template:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Christian Home Business Association</title>
    <title>{$title}</title>
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/reset.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/amember.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/site.css" />

    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/reset.css" />
    <link rel="stylesheet" type="text/css"
    href="{config.root_surl}/templates/css/amember.css" ? />
    <link rel="stylesheet" type="text/css"
    href="{config.root_surl}/templates/css/site.css" />

    </head>
    <body background="http://www.christianhomebusinessassoc.com/images/bgtile.jpg" topmargin="0">
    <p align="center"><img src="http://www.christianhomebusinessassoc.com/images/Headers_Pgs/CHBAsite_header_Join.jpg" alt="Christian Home Business Association" name="" width="900" height="340" /></p></body>

    Please advise,
    Thank you,
    Claudia Beck
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    Claudia,
    YTou have duplicate style includes in your code:
    Code:
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/reset.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/amember.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/site.css" />
    
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/reset.css" />
    <link rel="stylesheet" type="text/css"
    href="{config.root_surl}/templates/css/amember.css" ? />
    <link rel="stylesheet" type="text/css"
    href="{config.root_surl}/templates/css/site.css" />
    
    and last two includes have incorrect smarty tag.
    Remove above block and leave only this:
    Code:
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/reset.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/amember.css" />
    <link rel="stylesheet" type="text/css"
    href="{$config.root_surl}/templates/css/site.css" />
    
  3. sunseapromos

    sunseapromos Member

    Joined:
    Apr 26, 2010
    Messages:
    72
    Hi,

    Thank you. :)

    It works great now!

    Claudia

Share This Page