I have a document type that has the property item.HasProperty("umbracoInternalRedirectId") set to true. I want to disable this redirect but I cant find the setting for it. Where can I find this setting?
Not sure I quite get the issue - if a page has been selected in the content picker it will redirect to the chosen page. So isn't it a matter of removing the selected id on the page then? Or do I misunderstand your issue completely? :)
The item.HasProperty("umbracoInternalRedirectId") is returning true on a child and I dont know why. This child should not be true, so I am wondering how can I find out more about this property.
Remove umbracoInternalRedirectId
Hi
I have a document type that has the property item.HasProperty("umbracoInternalRedirectId") set to true. I want to disable this redirect but I cant find the setting for it. Where can I find this setting?
Thanks
Hi Antony
Not sure I quite get the issue - if a page has been selected in the content picker it will redirect to the chosen page. So isn't it a matter of removing the selected id on the page then? Or do I misunderstand your issue completely? :)
/Jan
Thanks for the reply
Basically i have the following code
@foreach (var item in home.Children.Where(x => x.IsVisible())) { if (item.TemplateId > 0 || item.HasProperty("umbracoInternalRedirectId")){
The item.HasProperty("umbracoInternalRedirectId") is returning true on a child and I dont know why. This child should not be true, so I am wondering how can I find out more about this property.
is working on a reply...