Open Register Form (or any single site) in a Pop-Up-Window

Hi,

is there a solution for opening a single page (like the register page) in a pop-up-window. Without the rest of the template (just the contents of a single page)?

I want to open a modal window (oxid ee / flow - bootstrap).

Thanks in advance.

some cms pages can be loaded without additional layout, but unfortunately registration page can not do this without template changes.

By default it is rendered without layout if private sales is active:

[{if $oView->isActive('PsLogin') }]
    [{include file="layout/popup.tpl"}]
[{else}]

you could adapt this to your needs

ok, I try. And how can I render another page without layout, is there an url parameter?

?plain=1 works for cms pages. e.g.:

[QUOTE=vanilla thunder;183469]?plain=1 works for cms pages. e.g.:

Thanks!! That helps me a lot :slight_smile:

I can’t get it to work… plain=1 works fine. But I can’t figure out how to include the article details of a selected (clicked) article inside a bootstrap modal.

I can’t include a URL, for security reasons…

bootstrap modal does not support external content.
Here is online documentation for bootstrap: http://getbootstrap.com/javascript/#modals

I know, that is why I need a solution to call the article details template via smarty. I there a way?

The whole details page is basically an oxwArticleDetails widget.
You can include it whereever you want. Have a look at tpl/page/details/details.tpl row 10 for an example