I'm using x-cart 4.3.2.
So i've seen the thread with the three snippets of code provided to me in this thread but my page.tpl only has this code in it.
Code:
{*
$Id: pages.tpl,v 1.10 2009/04/17 13:03:09 max Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
<h1>{$page_data.title}</h1>
{capture name=dialog}
{if $page_content ne ''}
{if $config.General.parse_smarty_tags eq "Y"}
{eval var=$page_content}
{else}
{$page_content}
{/if}
{/if}
{/capture}
{include file="customer/dialog.tpl" title=$page_data.title content=$smarty.capture.dialog noborder=true}
Am I missing something?