blogs lost all formatting
Ning To Jamroom
soaringeagle:....
it would be nice if stand alone pages truly stood alone like the groups had the sidebar and the profile header disabled
is there any way that can happen that stand alones have thier own template call that can be used to disable the profile elements ....
If its an admin user creating the page, They have the option of adding it as a stand alone page or a profile page.
If you want to pull a page off a profile and have it stand alone on the site, you can setup something at skin level to do that.
eg if you create a template called whatever.tpl in your skin, then its blank and will show up at:
your-site.com/whatever
The name of the template is the name in the URL.
so if you created a custom setup for pages you could have it any way you liked.
eg:
in whatever.tpl you could have
{capture name="template" assign="page_tpl"}
{literal}
{foreach $_items as $item}
{$item.page_body}
{/foreach}
{/literal}
{/capture}
{jrCore_list module="jrPage" search1="_item_id = `$_post.option`" template=$page_tpl}
Then used the url
your-site.com/whatever/1/the-page-title
That would show just that page body in that location.
Alternatively you could see how the groups page is setup to do it, then copy that structure. I think from memory it puts {jrProfile_disable_sidebar} into the item_detail.tpl bar to disable the sidebar.
Could try that for pages too.