I found an issue in my project. The page properties prefixed as jcr: and not getting rolled out.
Steps to reproduce:
Expected: Both Page Title and Description should be rolled out
Actual: Page Title gets rolled out, but Description fails to roll out.
My expectation was all page properties should get rolled out. What am I missing or do wrong?
Go to configuration manager in OSGI, http://localhost:4502/system/console/configMgr and search for CQ MSM Content Update Action configuration.
In this under excluded page properties, jcr:.* is excluded so, the jcr properties are not inherited from parent page.
To inherit the parent page description property, replace jcr:.*
to jcr:(?!(description)$)
.. This will inherit the page property description to child pages as well. Need to configure similarly for other page properties as well.