I have two directories that both have the exact same title code and the same "Name" under Admin > Site and the same Title under Admin > Directory The title code is <title>{$tdescription} {if empty ($tdescription)}{$smarty.capture.title|strip|trim}{/if} - {if empty ($TITLE)}{$smarty.const.DIRECTORY_TITLE|escape|trim}{/if}</title> Code (markup): but i'm getting different homepage titles for them. Why is that? I want the Lili Directory's homepage's title to be "Website Directory - Lili Directory". but cant figure out why its not Thanks
Is the code same in both directories' templates? More often than not this is the issue. Do you also have a description in Admin -> Site for both?
Yeah, it's the easy method that you can do, But you maybe need to change the title code manually each time.
yes to both questions. I checked and double checked and triple checked (same with the description in Admin --> Directory
replace the title code by this, in header.tpl file <title>{if empty ($TITLE)}{$smarty.const.DIRECTORY_TITLE|escape|trim}{/if}{$smarty.capture.title|strip|trim}</title> Code (markup):