{** LEFT SIDE **}
{if $MENU_VIEW != "checkout" && $site_boxes_left > 0 && $HideBoxesOnCheckout == "no"}
{assign var="box_displayed" value="0"}
{foreach from=$site_boxes item=site_box}
{if $site_box.place == "Left"}
{include file=$site_box.file}
{assign var="box_displayed" value="1"}
{/if}
{/foreach}
{if $auth_express != "yes" && $AllowCreateAccount != "No"}
{include file="boxes/box_profile.html"}
{assign var="box_displayed" value="1"}
{/if}
|
{/if}
{** CENTER **}
{include file=$body}
|
{** RIGHT SIDE **}
{if ($IsRightSide == "yes" && $site_boxes_right > 0 && $HideBoxesOnCheckout == "no") || $bought_bestsellers}
{assign var="box_displayed" value="0"}
{if $bought_bestsellers}
{assign var="products" value=$bought_bestsellers}
{include file=$bought_bestsellers_file}
{assign var="box_displayed" value="1"}
{/if}
{if $HideBoxesOnCheckout == "no" }
{foreach from=$site_boxes item=site_box}
{if $site_box.place == "Right"}
{include file=$site_box.file}
{assign var="box_displayed" value="1"}
{/if}
{/foreach}
{/if}
|
{/if}