21301 Posts in 5735 Topics by 2603 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 694 Views |
-
open a page without menu's

17 January 2011 at 3:08pm
Hi there,
I want to open a specific page (into an iFrame), but without the side menu's etc. Just literally the page.
Is it a case of making a new template? if someone could prod me in the right direction that would be great.
Thanks
Grant -
Re: open a page without menu's

18 January 2011 at 4:47am
You could load the page with an 'action'. If your page url is mysite/somepage/, load it into the iframe like mysite/somepage/inframe/
Then define an action in your page controler that renders the page (using a CustomPage.ss template):
function inframe() {
return $this->renderWith(array('CustomPage'));
}Add inframe to your allowed actions, if you will:
public static $allowed_actions = array (
'inframe',
...
); -
Re: open a page without menu's

31 January 2011 at 11:03pm
Hi martimiz,
Sorry to sound so silly, but where do i put the first function? in the mysite/code/page.php ??
Then how do i call the function? ie, when i specify the link in the CMS, will there be something special to do?
Grant
| 694 Views | ||
|
Page:
1
|
Go to Top |

