Hi all,
Suppose,
I have two nos. data bound master page template one is employee.php and other one is employer.php. Both page have a common editable region name 'location'
<cms:editable name='location' required='1' type='text' />
Now what I want to achieve When location (India) matches it will display a list view with 'location'(india) when a employee or employer log into his/her own page .
I cant code this, but I tried simply
What is the right code ? I need your help.
Thanks
Suppose,
I have two nos. data bound master page template one is employee.php and other one is employer.php. Both page have a common editable region name 'location'
<cms:editable name='location' required='1' type='text' />
Now what I want to achieve When location (India) matches it will display a list view with 'location'(india) when a employee or employer log into his/her own page .
I cant code this, but I tried simply
- Code: Select all
<cms:pages masterpage='employer.php' && masterpage='employee.php'>
<cms:if location == location >
<cms:show location/>
...Other...
<cms:else />
</cms:if>
</cms:pages>
What is the right code ? I need your help.
Thanks