Hi,
Unfortunately, it is a default behavior, which cannot be changed easily. The value, which is used for inheritance is set by default to null. To change this behavior, you will need to set it to empty string. This can be done in a custom tree node handler:
Custom tree node handlerIn this handler you will need to add following code:
node.SetValue("DocumentPageTitle", "");
node.SetValue("DocumentPageKeyWords", "");
node.SetValue("DocumentPageDescription", "");
node.SetValue("DocumentTagGroupID", "");
Using above code in the custom tree node handler you can change default behavior and new node will not inherit from its parent.
Best regards,
Ivana Tomanickova