Suneel
Suneel

Reputation: 827

Preview in author instance

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

Answers (3)

Olha Mantuliak
Olha Mantuliak

Reputation: 93

Think this link will be useful for you CQ Developer Tricks

?wcmmode=(edit|preview|design|disabled)

This para­me­ter sets your WCMMode in the spec­i­fied mode, makes test­ing for a par­tic­u­lar Wcm­Mode easier.

Upvotes: 1

user2142786
user2142786

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

toniedzwiedz
toniedzwiedz

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

Related Questions