Hi,
I have some folder and sub-folder
Like
A (Folder)
-1 (Sub-Folder)
-2 (Sub-Folder)
-3 (Sub-Folder)
...........(Sub-Folders)
-100 (Sub-Folder)
I am using this code
In this case if I select Parent folder A above condition work perfect only if I set Parent Folder "A" in admin, but if i set sub-folder 100 above condition not working.
what is the exact code to working Parent and Sub folder with the above condition?
or I have to try ?
Thanks
Subhamoy
I have some folder and sub-folder
Like
A (Folder)
-1 (Sub-Folder)
-2 (Sub-Folder)
-3 (Sub-Folder)
...........(Sub-Folders)
-100 (Sub-Folder)
I am using this code
- Code: Select all
<cms:if my_membership_type='A'>
<cms:input class="login-input" id="image20" name="image20" type="bound" />
</cms:if>
In this case if I select Parent folder A above condition work perfect only if I set Parent Folder "A" in admin, but if i set sub-folder 100 above condition not working.
what is the exact code to working Parent and Sub folder with the above condition?
or I have to try ?
- Code: Select all
<cms:if (my_membership_type='A') || (my_membership_type='1')|| (my_membership_type='2') || (my_membership_type='....') || (my_membership_type='100')>
Thanks
Subhamoy