Page 1 of 1

Need joomla article to show in popup window

Posted: Fri Oct 03, 2008 2:22 pm
by nettemor
Hi,

I am using the wrapper to include a php application. Ahead in the php app there are a link to a "condition"page. This "condition" page is actually a joomla page. How can i get the joomla page to show up in a popup window?

(The user cannot click on the menu to see the "condition" page, cause then will joomla load that page and the php app will dissapear)

Re: Need joomla article to show in popup window

Posted: Sat Oct 04, 2008 10:24 am
by ooffick
Hi, in the Menu Manager you can choose if you want to display the link in a new window pop-up or in the same window.
You might need to add &tmpl=component to the link as well.

Olaf

Re: Need joomla article to show in popup window

Posted: Sat Oct 04, 2008 5:01 pm
by nettemor
Hi,
and thanks for your answer. I cannot do it the way you describe. This should be a link in the php page, which are going to show a joomla content in a popup window.

Re: Need joomla article to show in popup window

Posted: Sat Oct 04, 2008 5:24 pm
by ooffick
You could try to add this:

Code: Select all

<a href="[add-your-link-here]" rel="nofollow" onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no'); return false;">Click here to open the pop-up</a>
Olaf

Re: Need joomla article to show in popup window

Posted: Tue May 04, 2010 9:42 am
by mutwirik
Thanks ooffick,

It is just what i was looking for. A pop up window that opens from an Article link