im having an issue regarding form fields showing up in my menu. i have tried filtering in my menu xslt by checking specific name or specific alias @nodeTypeAlias ='pliableField', but without luck, any help appreciated!
Are you on the old schema? Because checking for @nodeTypeAlias!='pliableField' should only work in the old schema, you will need something like name()!='pliableField' for the new schema.
There are two others ways tho to handle this that might be better for you. One is to add you own generic property to the pliableField master that would include or exclude your nodes. A very common one to use is 'umbracoNaviHide'.
The other way is to try out the Pliable Form 1.0 which will let you build the form completely outside of your menu structure and then pull it in using a macro on a template or in a richtext editor.
thansk for the reply, i will try your suggestions, im running umbraco 4.5 and would like to disable some nodes based on the present pages document type.
pliable form fileds shows up in menu
Hi!
im having an issue regarding form fields showing up in my menu. i have tried filtering in my menu xslt by checking specific name or specific alias @nodeTypeAlias ='pliableField', but without luck, any help appreciated!
regards / MArcus
Hi Marcus,
Are you on the old schema? Because checking for @nodeTypeAlias!='pliableField' should only work in the old schema, you will need something like name()!='pliableField' for the new schema.
There are two others ways tho to handle this that might be better for you. One is to add you own generic property to the pliableField master that would include or exclude your nodes. A very common one to use is 'umbracoNaviHide'.
The other way is to try out the Pliable Form 1.0 which will let you build the form completely outside of your menu structure and then pull it in using a macro on a template or in a richtext editor.
Hope that helps.
thansk for the reply, i will try your suggestions, im running umbraco 4.5 and would like to disable some nodes based on the present pages document type.
is working on a reply...