Hi all,
I am using Member module with a clonable data bound form
This data bound form can access a register member who registered with member module register.php.
my data bound from have a editable name="email" and register.php have a field name="member_email"
Now I want to create a if condition like
I mean If two email variable match <cms:if email == member_email > disply xyz <cms:else />
</cms:if>
I think there is a master-page declaration need for member_email but I cant .
can you help me?
Thanks
I am using Member module with a clonable data bound form
This data bound form can access a register member who registered with member module register.php.
my data bound from have a editable name="email" and register.php have a field name="member_email"
Now I want to create a if condition like
- Code: Select all
<cms:pages masterpage='job_details.php' paginate='1' limit='4'>
<cms:if email == member_email >
<a href="<cms:show k_page_link />" class="featured applied">
<div class="row">
<div class="col-lg-3 col-md-1 hidden-sm hidden-xs">
<img src="<cms:show company_logo/>" width="80" height="auto" alt="" class="img-responsive"/>
</div>
<div class="col-lg-3 col-md-5 col-sm-7 col-xs-12 job-title">
<h5><cms:show job_titel/></h5>
<p><strong><cms:show company_name/></strong> <br><cms:show company_tagline/></p>
</div>
<div class="col-lg-3 col-md-4 col-sm-5 col-xs-12 job-location">
<p><strong><cms:show job_location/></strong></p>
<p class="hidden-xs"><cms:show job_regeion/></p>
</div>
<div class="col-lg-3 col-md-2 hidden-sm hidden-xs job-type text-center">
<p class="job-salary"><strong>Posted -<cms:date k_page_date /></strong></p>
<p class="badge full-time"><cms:show job_type/></p>
</div>
</div>
</a>
<cms:else />
</cms:if>
</cms:pages>
I mean If two email variable match <cms:if email == member_email > disply xyz <cms:else />
</cms:if>
I think there is a master-page declaration need for member_email but I cant .
can you help me?
Thanks