Reputation: 827
Can I view my content in my author instance without the sidekick showing up? Can that be done without have a publish instance to view the content? I know there is a preview button on sidekick but that only minimizes sidekick.
Upvotes: 2
Views: 8837
Reputation: 93
Think this link will be useful for you CQ Developer Tricks
?wcmmode=(edit|preview|design|disabled)
This parameter sets your WCMMode in the specified mode, makes testing for a particular WcmMode easier.
Upvotes: 1
Reputation: 1482
For editing mode you can use
http://localhost:4502/content/geometrixx-outdoors/en.html?wcmmode=edit
for preview mode it is
http://localhost:4502/content/geometrixx-outdoors/en.html?wcmmode=preview
Upvotes: 0
Reputation: 18553
You add a parameter to your query string.
Just append wcmmode=disabled
For example: http://localhost:4502/content/geometrixx-outdoors/en.html?wcmmode=disabled
This will hide all of the authoring tools. It's as close as you can get to how a page looks on a publish on an author instance.
Be sure to remove cf#
from the path.
Upvotes: 3