Jump to content

Edit History

8ternity

8ternity

Its a part of code on page.tpl into template folder.

Original code

  <section id="main">
    {block name='page_header_container'}
      {block name='page_title' hide}
      <h1 class="page-heading">{$smarty.block.child}</h1>
      {/block}
    {/block}

I want to do :

  <section id="main">
    {block name='page_header_container'}
      {if $smarty.get.id_cms > 0}
      	{else}
      	{block name='page_title' hide}
      	<h1 class="page-heading">{$smarty.block.child}</h1>
      {/if}
      {/block}
    {/block}

Is gonna work that way?

 

EDIT: No, it's breaking the page to load. :(

I just to to hide the <h1> object if smarty get id from CMS.

 

8ternity

8ternity

Its a part of code on page.tpl into template folder.

Original code

  <section id="main">
    {block name='page_header_container'}
      {block name='page_title' hide}
      <h1 class="page-heading">{$smarty.block.child}</h1>
      {/block}
    {/block}

I want to do :

  <section id="main">
    {block name='page_header_container'}
      {if $smarty.get.id_cms > 0}
      	{else}
      	{block name='page_title' hide}
      	<h1 class="page-heading">{$smarty.block.child}</h1>
      {/if}
      {/block}
    {/block}

Is gonna work that way?

×
×
  • Create New...