I already Have 4 pages created by using Page Content type. all that in Primary Links. Now I add 2 more tabs in Primary Links created using Page Content Type.I can able to see new tabs only i logged in as admin. If i logged out then I cant able to see that newly created tabs. Please give me the Solution who knows the solution or who facing the same problem.im using pixture Reloaded Theme.
Comments
Comment #1
vishnukumarksd commentedI already Have 4 pages created by using Page Content type. all that in Primary Links. Now I add 2 more tabs in Primary Links created using Page Content Type.I can able to see new tabs only i logged in as admin. If i logged out then I cant able to see that newly created tabs. Please give me the Solution who knows the solution or who facing the same problem.im using pixture Reloaded Theme.
Comment #2
emptyvoid commentedYour issue doesn't have anything to do with the admin module as this module doesn't affect permissions to nodes it just reads them. And the permission validation is only in the Administration section of the site, not your pages where anonymous users would be.
My guess is you don't have anonymous users with the correct permissions to see your page content types.
Comment #3
vishnukumarksd commentedHi dudes,
i was created a web form with many fields like First name,Last name,Middle name etc.., and one more field is drop down box,Others(text Field).One of the option in the drop down box is "Specify others". If i click the "Specify Others" option then only i can able to see the Others(Text Box).i Did this really well. By using the Following Code.
$(document).ready(function() {
$("#edit-submitted-employment-sector").change(function() {
if($("#edit-submitted-employment-sector").val() == 'Specify others')
{
$('#edit-submitted-others').show();
}
else
{
$('#edit-submitted-others').hide();
}
});
});
Note:
edit-submitted-employment-sector--------------->Drop down box id
edit-submitted-others--------------------------->Text box id(Others (text box))
my doubt is , How to i hide the Label "Others" (Others Text box label) and and when the form loads both the text box and label must be hide. how to i do this... Please give me the Solution who knows the solution or who facing the same task. mail me ksdvishnukumar@gmail.com Thanks in advance...
Comment #4
emptyvoid commented