RE: Different masterpages in site collection

2015-02-09 Thread Paul Noone
Why do you need a separate master for Search pages? Is there something I’m 
missing?

I’ve always managed to get away with an application and system masterpage and 
perform the rest of the work in layouts.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Monday, February 9, 2015 4:28 PM
To: ozMOSS
Subject: RE: Different masterpages in site collection

There is no reason why not have separate master pages. It is very valid. The 
search pages for example need to have a different master page to the rest of 
pages in the site.

The way to do it if you want a single page in the same site as other pages is 
to edit the masterpage instruction in the page markup itself. You can do it 
either in sharepoint designer or you can download the aspx page to your desktop 
and edit it in notepad and then upload it back. SharePoint designer sometimes 
restricts editing pages like that, so I prefer the latter.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 3 February 2015 10:03 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Ah fair enough. You can’t argue with bad architecture. ☺

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Tuesday, February 3, 2015 9:46 AM
To: ozMOSS
Subject: Re: Different masterpages in site collection

Hi Paul,
the supplied design for home page includes footer in content section, and rest 
of the site it's outside content block.
It's a  design heavy responsive site and I don't want to play with supplied 
html, that's why going this way.

Cheers
A

On Tue, Feb 3, 2015 at 10:27 AM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Why not just create a new layout for the homepage and put your custom footer in 
there?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Saturday, January 31, 2015 11:03 PM
To: ozMOSS
Subject: Re: Different masterpages in site collection

thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will 
include in masterpage but do a simple display:none for rest of the sites footer 
in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly 
rob.ba...@sharingminds.com.aumailto:rob.ba...@sharingminds.com.au wrote:
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb 
http://site/subwebhttp://%3csite%3e/%3csubweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subwebhttp://%3csite%3e/%3csubweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH
foreach($subSite in (Get-SPWeb http://sitehttp://%3csite%3e).Webs)
{
 $subSite.MasterURL = /site/subweb/_catalogs/masterpage/NEW.master
 $subSite.Update()
}

Regards
Rob


Today's Topics:

   1. RE: Different masterpages in site collection (Nigel Hertz)
   2. RE: Different masterpages in site collection (Paul Noone)


--

Message: 1
Date: Mon, 26 Jan 2015 20:46:18 +
From: Nigel Hertz 
nigel.he...@stockland.com.aumailto:nigel.he...@stockland.com.au
Subject: RE: Different masterpages in site collection
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Message-ID:

8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.aumailto:8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.au
Content-Type: text/plain; charset=utf-8

Howdy

Personally, I would set the one for ?the rest of the site? on the homepage, and 
tell it to ?reset all subsites to inherit?. Once that?s done, change it to set 
the homepage masterpage as ?live?, but DESELECT the ?reset subsites? bit.

There may be a better way, but that?s the way I did it.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about

RE: Different masterpages in site collection

2015-02-09 Thread Paul Noone
Yes, I noticed. Which is why I always apply my own master. I thought maybe 
there was a reason they used the minimal master but I’ve yet to find one. ☺

In fact the whole Search Center sucks. I usually create my own and then apply 
my search layout pages which include refiner web parts and whatever else is 
required.


From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ishai Sagi
Sent: Tuesday, February 10, 2015 10:56 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

The enterprise search site template relies on a minimal master page that is 
separate from the default.master or whatever master page you select (which is 
why you don’t get navigation in the search sites by default – which sucks).
Maybe you never noticed?


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 10 February 2015 8:29 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Why do you need a separate master for Search pages? Is there something I’m 
missing?

I’ve always managed to get away with an application and system masterpage and 
perform the rest of the work in layouts.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ishai Sagi
Sent: Monday, February 9, 2015 4:28 PM
To: ozMOSS
Subject: RE: Different masterpages in site collection

There is no reason why not have separate master pages. It is very valid. The 
search pages for example need to have a different master page to the rest of 
pages in the site.

The way to do it if you want a single page in the same site as other pages is 
to edit the masterpage instruction in the page markup itself. You can do it 
either in sharepoint designer or you can download the aspx page to your desktop 
and edit it in notepad and then upload it back. SharePoint designer sometimes 
restricts editing pages like that, so I prefer the latter.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 3 February 2015 10:03 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Ah fair enough. You can’t argue with bad architecture. ☺

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Tuesday, February 3, 2015 9:46 AM
To: ozMOSS
Subject: Re: Different masterpages in site collection

Hi Paul,
the supplied design for home page includes footer in content section, and rest 
of the site it's outside content block.
It's a  design heavy responsive site and I don't want to play with supplied 
html, that's why going this way.

Cheers
A

On Tue, Feb 3, 2015 at 10:27 AM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Why not just create a new layout for the homepage and put your custom footer in 
there?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Saturday, January 31, 2015 11:03 PM
To: ozMOSS
Subject: Re: Different masterpages in site collection

thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will 
include in masterpage but do a simple display:none for rest of the sites footer 
in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly 
rob.ba...@sharingminds.com.aumailto:rob.ba...@sharingminds.com.au wrote:
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb 
http://site/subwebhttp://%3csite%3e/%3csubweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subwebhttp://%3csite%3e/%3csubweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH
foreach($subSite in (Get-SPWeb http://sitehttp://%3csite%3e).Webs)
{
 $subSite.MasterURL = /site/subweb/_catalogs/masterpage/NEW.master
 $subSite.Update()
}

Regards
Rob


Today's Topics:

   1. RE: Different masterpages in site collection (Nigel Hertz)
   2. RE: Different masterpages in site collection (Paul Noone)


--

Message: 1
Date: Mon, 26 Jan 2015 20:46:18 +
From: Nigel Hertz 
nigel.he

RE: Different masterpages in site collection

2015-02-09 Thread Nigel Hertz
That’s pretty much what I do as well.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 10 February 2015 11:09 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Yes, I noticed. Which is why I always apply my own master. I thought maybe 
there was a reason they used the minimal master but I’ve yet to find one. ☺

In fact the whole Search Center sucks. I usually create my own and then apply 
my search layout pages which include refiner web parts and whatever else is 
required.


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ishai Sagi
Sent: Tuesday, February 10, 2015 10:56 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

The enterprise search site template relies on a minimal master page that is 
separate from the default.master or whatever master page you select (which is 
why you don’t get navigation in the search sites by default – which sucks).
Maybe you never noticed?


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 10 February 2015 8:29 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Why do you need a separate master for Search pages? Is there something I’m 
missing?

I’ve always managed to get away with an application and system masterpage and 
perform the rest of the work in layouts.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ishai Sagi
Sent: Monday, February 9, 2015 4:28 PM
To: ozMOSS
Subject: RE: Different masterpages in site collection

There is no reason why not have separate master pages. It is very valid. The 
search pages for example need to have a different master page to the rest of 
pages in the site.

The way to do it if you want a single page in the same site as other pages is 
to edit the masterpage instruction in the page markup itself. You can do it 
either in sharepoint designer or you can download the aspx page to your desktop 
and edit it in notepad and then upload it back. SharePoint designer sometimes 
restricts editing pages like that, so I prefer the latter.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 3 February 2015 10:03 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Ah fair enough. You can’t argue with bad architecture. ☺

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Tuesday, February 3, 2015 9:46 AM
To: ozMOSS
Subject: Re: Different masterpages in site collection

Hi Paul,
the supplied design for home page includes footer in content section, and rest 
of the site it's outside content block.
It's a  design heavy responsive site and I don't want to play with supplied 
html, that's why going this way.

Cheers
A

On Tue, Feb 3, 2015 at 10:27 AM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Why not just create a new layout for the homepage and put your custom footer in 
there?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Saturday, January 31, 2015 11:03 PM
To: ozMOSS
Subject: Re: Different masterpages in site collection

thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will 
include in masterpage but do a simple display:none for rest of the sites footer 
in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly 
rob.ba...@sharingminds.com.aumailto:rob.ba...@sharingminds.com.au wrote:
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb 
http://site/subwebhttp://%3csite%3e/%3csubweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subwebhttp://%3csite%3e/%3csubweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH
foreach($subSite in (Get-SPWeb http://sitehttp://%3csite%3e).Webs)
{
 $subSite.MasterURL = /site/subweb/_catalogs/masterpage/NEW.master
 $subSite.Update()
}

Regards
Rob


Today's Topics:

   1. RE: Different

RE: Different masterpages in site collection

2015-02-09 Thread Ishai Sagi
The search pages have some specific requirements for content place holders that 
the default.master doesn’t have. What you are doing is perfectly fine, but it 
does mean you have to put in more work when creating a search site (which is 
fine if you only ever going to have one).

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Paul Noone
Sent: Tuesday, 10 February 2015 11:09 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Yes, I noticed. Which is why I always apply my own master. I thought maybe 
there was a reason they used the minimal master but I’ve yet to find one. ☺

In fact the whole Search Center sucks. I usually create my own and then apply 
my search layout pages which include refiner web parts and whatever else is 
required.


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ishai Sagi
Sent: Tuesday, February 10, 2015 10:56 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

The enterprise search site template relies on a minimal master page that is 
separate from the default.master or whatever master page you select (which is 
why you don’t get navigation in the search sites by default – which sucks).
Maybe you never noticed?


From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 10 February 2015 8:29 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Why do you need a separate master for Search pages? Is there something I’m 
missing?

I’ve always managed to get away with an application and system masterpage and 
perform the rest of the work in layouts.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ishai Sagi
Sent: Monday, February 9, 2015 4:28 PM
To: ozMOSS
Subject: RE: Different masterpages in site collection

There is no reason why not have separate master pages. It is very valid. The 
search pages for example need to have a different master page to the rest of 
pages in the site.

The way to do it if you want a single page in the same site as other pages is 
to edit the masterpage instruction in the page markup itself. You can do it 
either in sharepoint designer or you can download the aspx page to your desktop 
and edit it in notepad and then upload it back. SharePoint designer sometimes 
restricts editing pages like that, so I prefer the latter.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Paul Noone
Sent: Tuesday, 3 February 2015 10:03 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Ah fair enough. You can’t argue with bad architecture. ☺

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Tuesday, February 3, 2015 9:46 AM
To: ozMOSS
Subject: Re: Different masterpages in site collection

Hi Paul,
the supplied design for home page includes footer in content section, and rest 
of the site it's outside content block.
It's a  design heavy responsive site and I don't want to play with supplied 
html, that's why going this way.

Cheers
A

On Tue, Feb 3, 2015 at 10:27 AM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Why not just create a new layout for the homepage and put your custom footer in 
there?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Saturday, January 31, 2015 11:03 PM
To: ozMOSS
Subject: Re: Different masterpages in site collection

thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will 
include in masterpage but do a simple display:none for rest of the sites footer 
in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly 
rob.ba...@sharingminds.com.aumailto:rob.ba...@sharingminds.com.au wrote:
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb 
http://site/subwebhttp://%3csite%3e/%3csubweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subwebhttp://%3csite%3e/%3csubweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH

RE: Different masterpages in site collection

2015-02-02 Thread Paul Noone
Ah fair enough. You can’t argue with bad architecture. ☺

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Tuesday, February 3, 2015 9:46 AM
To: ozMOSS
Subject: Re: Different masterpages in site collection

Hi Paul,
the supplied design for home page includes footer in content section, and rest 
of the site it's outside content block.
It's a  design heavy responsive site and I don't want to play with supplied 
html, that's why going this way.

Cheers
A

On Tue, Feb 3, 2015 at 10:27 AM, Paul Noone 
p.no...@keller.com.aumailto:p.no...@keller.com.au wrote:
Why not just create a new layout for the homepage and put your custom footer in 
there?

Regards,

Paul

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Saturday, January 31, 2015 11:03 PM
To: ozMOSS
Subject: Re: Different masterpages in site collection

thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will 
include in masterpage but do a simple display:none for rest of the sites footer 
in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly 
rob.ba...@sharingminds.com.aumailto:rob.ba...@sharingminds.com.au wrote:
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb 
http://site/subwebhttp://%3csite%3e/%3csubweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subwebhttp://%3csite%3e/%3csubweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH
foreach($subSite in (Get-SPWeb http://sitehttp://%3csite%3e).Webs)
{
 $subSite.MasterURL = /site/subweb/_catalogs/masterpage/NEW.master
 $subSite.Update()
}

Regards
Rob


Today's Topics:

   1. RE: Different masterpages in site collection (Nigel Hertz)
   2. RE: Different masterpages in site collection (Paul Noone)


--

Message: 1
Date: Mon, 26 Jan 2015 20:46:18 +
From: Nigel Hertz 
nigel.he...@stockland.com.aumailto:nigel.he...@stockland.com.au
Subject: RE: Different masterpages in site collection
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Message-ID:

8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.aumailto:8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.au
Content-Type: text/plain; charset=utf-8

Howdy

Personally, I would set the one for ?the rest of the site? on the homepage, and 
tell it to ?reset all subsites to inherit?. Once that?s done, change it to set 
the homepage masterpage as ?live?, but DESELECT the ?reset subsites? bit.

There may be a better way, but that?s the way I did it.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com] On Behalf 
Of Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about it,,, google hasn't been very helpful

thanks
ajay



Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us. If it has been sent to you by mistake, legal privilege is 
not waived or lost and you are not entitled to use it in any way. Stockland and 
its subsidiaries reserve the right to monitor e-mail communication through its 
networks.
-- next part --
An HTML attachment was scrubbed...
URL: 
http://prdlxvm0001.codify.net/pipermail/ozmoss/attachments/20150126/9051e263/attachment-0001.html

--

Message: 2
Date: Tue, 27 Jan 2015 01:35:42 +
From: Paul Noone p.no...@keller.com.aumailto:p.no...@keller.com.au
Subject: RE: Different masterpages in site collection
To: ozMOSS ozmoss@ozmoss.commailto:ozmoss@ozmoss.com
Message-ID:

5ff8bf2136ad534cafdeea7bc8cbf186a68...@ms-01.keller.com.aumailto:5ff8bf2136ad534cafdeea7bc8cbf186a68...@ms-01.keller.com.au
Content-Type: text/plain; charset=utf-8

Is there any reason why you need a new masterpage for a single page?

I find that a layout page or customizing the page can usually overcome most 
situations.

Regards,

Paul

From: ozmoss

Re: Different masterpages in site collection

2015-01-31 Thread Ajay
thanks guys,
I can see it's too much work and unnecessary complexity with 2 masterpages.
I had different markup for footer for pages other than homepage, and will
include in masterpage but do a simple display:none for rest of the sites
footer in home page layout and include homepage footer in it's layout.

Cheers
A

On Thu, Jan 29, 2015 at 5:11 PM, Rob Bayly rob.ba...@sharingminds.com.au
wrote:

 If it's sub-sites, and not pages, then this may help. I forget where I
 found the original PowerShell script - but the following may work for
 updating sub-sites

 //INDIVIDUAL
 PS C:\path $web = Get-SPWeb http://site/subweb
 //just to confirm it's set
 PS C:\path $web
 Url
 ---
 http://site/subweb
 //check current master page
 PS C:\path $web.MasterUrl
 /site/subweb/_catalogs/masterpage/v4.master
 //set new master
 PS C:\path $web.MasterUrl
 =/site/subweb/_catalogs/masterpage/NEW.master
 //check it
 PS C:\path $web.MasterUrl
 /site/subweb//_catalogs/masterpage/NEW.master
 PS C:\path $web.Update()

 ALL/BATCH
 foreach($subSite in (Get-SPWeb http://site).Webs)
 {
  $subSite.MasterURL =
 /site/subweb/_catalogs/masterpage/NEW.master
  $subSite.Update()
 }

 Regards
 Rob


 Today's Topics:

1. RE: Different masterpages in site collection (Nigel Hertz)
2. RE: Different masterpages in site collection (Paul Noone)


 --

 Message: 1
 Date: Mon, 26 Jan 2015 20:46:18 +
 From: Nigel Hertz nigel.he...@stockland.com.au
 Subject: RE: Different masterpages in site collection
 To: ozMOSS ozmoss@ozmoss.com
 Message-ID:
 8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.au
 Content-Type: text/plain; charset=utf-8

 Howdy

 Personally, I would set the one for ?the rest of the site? on the
 homepage, and tell it to ?reset all subsites to inherit?. Once that?s done,
 change it to set the homepage masterpage as ?live?, but DESELECT the ?reset
 subsites? bit.

 There may be a better way, but that?s the way I did it.

 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On
 Behalf Of Ajay
 Sent: Friday, 23 January 2015 9:30 PM
 To: ozMOSS
 Subject: Different masterpages in site collection

 Hi guys,
 i want to use 2 different masterpages in site collection, one for home
 page and other for rest of the site.

 how to go about it,,, google hasn't been very helpful

 thanks
 ajay

 

 Stockland Notice: If this communication has been sent to you by mistake,
 please delete and notify us. If it has been sent to you by mistake, legal
 privilege is not waived or lost and you are not entitled to use it in any
 way. Stockland and its subsidiaries reserve the right to monitor e-mail
 communication through its networks.
 -- next part --
 An HTML attachment was scrubbed...
 URL:
 http://prdlxvm0001.codify.net/pipermail/ozmoss/attachments/20150126/9051e263/attachment-0001.html

 --

 Message: 2
 Date: Tue, 27 Jan 2015 01:35:42 +
 From: Paul Noone p.no...@keller.com.au
 Subject: RE: Different masterpages in site collection
 To: ozMOSS ozmoss@ozmoss.com
 Message-ID:
 5ff8bf2136ad534cafdeea7bc8cbf186a68...@ms-01.keller.com.au
 Content-Type: text/plain; charset=utf-8

 Is there any reason why you need a new masterpage for a single page?

 I find that a layout page or customizing the page can usually overcome
 most situations.

 Regards,

 Paul

 From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On
 Behalf Of Nigel Hertz
 Sent: Tuesday, January 27, 2015 7:46 AM
 To: ozMOSS
 Subject: RE: Different masterpages in site collection

 Howdy

 Personally, I would set the one for ?the rest of the site? on the
 homepage, and tell it to ?reset all subsites to inherit?. Once that?s done,
 change it to set the homepage masterpage as ?live?, but DESELECT the ?reset
 subsites? bit.

 There may be a better way, but that?s the way I did it.

 From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com [mailto:
 ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
 Sent: Friday, 23 January 2015 9:30 PM
 To: ozMOSS
 Subject: Different masterpages in site collection

 Hi guys,
 i want to use 2 different masterpages in site collection, one for home
 page and other for rest of the site.

 how to go about it,,, google hasn't been very helpful

 thanks
 ajay
 ___
 Sponsored by Infotext - Amazing Search for Microsoft SharePoint -
 http://www.infotext.com/
 ozmoss mailing list
 ozmoss@ozmoss.com
 http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss

RE: Different masterpages in site collection

2015-01-28 Thread Rob Bayly
If it's sub-sites, and not pages, then this may help. I forget where I found 
the original PowerShell script - but the following may work for updating 
sub-sites

//INDIVIDUAL
PS C:\path $web = Get-SPWeb http://site/subweb
//just to confirm it's set
PS C:\path $web
Url
---
http://site/subweb
//check current master page
PS C:\path $web.MasterUrl
/site/subweb/_catalogs/masterpage/v4.master
//set new master
PS C:\path $web.MasterUrl 
=/site/subweb/_catalogs/masterpage/NEW.master
//check it
PS C:\path $web.MasterUrl
/site/subweb//_catalogs/masterpage/NEW.master
PS C:\path $web.Update()

ALL/BATCH
foreach($subSite in (Get-SPWeb http://site).Webs) 
{ 
 $subSite.MasterURL = /site/subweb/_catalogs/masterpage/NEW.master
 $subSite.Update()
}

Regards
Rob


Today's Topics:

   1. RE: Different masterpages in site collection (Nigel Hertz)
   2. RE: Different masterpages in site collection (Paul Noone)


--

Message: 1
Date: Mon, 26 Jan 2015 20:46:18 +
From: Nigel Hertz nigel.he...@stockland.com.au
Subject: RE: Different masterpages in site collection
To: ozMOSS ozmoss@ozmoss.com
Message-ID:
8e9a6d933a414688a50743539f4dc...@cdcexh011.stocklandnet.com.au
Content-Type: text/plain; charset=utf-8

Howdy

Personally, I would set the one for ?the rest of the site? on the homepage, and 
tell it to ?reset all subsites to inherit?. Once that?s done, change it to set 
the homepage masterpage as ?live?, but DESELECT the ?reset subsites? bit.

There may be a better way, but that?s the way I did it.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about it,,, google hasn't been very helpful

thanks
ajay



Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us. If it has been sent to you by mistake, legal privilege is 
not waived or lost and you are not entitled to use it in any way. Stockland and 
its subsidiaries reserve the right to monitor e-mail communication through its 
networks.
-- next part --
An HTML attachment was scrubbed...
URL: 
http://prdlxvm0001.codify.net/pipermail/ozmoss/attachments/20150126/9051e263/attachment-0001.html
 

--

Message: 2
Date: Tue, 27 Jan 2015 01:35:42 +
From: Paul Noone p.no...@keller.com.au
Subject: RE: Different masterpages in site collection
To: ozMOSS ozmoss@ozmoss.com
Message-ID:
5ff8bf2136ad534cafdeea7bc8cbf186a68...@ms-01.keller.com.au
Content-Type: text/plain; charset=utf-8

Is there any reason why you need a new masterpage for a single page?

I find that a layout page or customizing the page can usually overcome most 
situations.

Regards,

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Tuesday, January 27, 2015 7:46 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Howdy

Personally, I would set the one for ?the rest of the site? on the homepage, and 
tell it to ?reset all subsites to inherit?. Once that?s done, change it to set 
the homepage masterpage as ?live?, but DESELECT the ?reset subsites? bit.

There may be a better way, but that?s the way I did it.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about it,,, google hasn't been very helpful

thanks
ajay
___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss


RE: Different masterpages in site collection

2015-01-26 Thread Paul Noone
Is there any reason why you need a new masterpage for a single page?

I find that a layout page or customizing the page can usually overcome most 
situations.

Regards,

Paul

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Nigel Hertz
Sent: Tuesday, January 27, 2015 7:46 AM
To: ozMOSS
Subject: RE: Different masterpages in site collection

Howdy

Personally, I would set the one for ‘the rest of the site’ on the homepage, and 
tell it to “reset all subsites to inherit”. Once that’s done, change it to set 
the homepage masterpage as ‘live’, but DESELECT the ‘reset subsites’ bit.

There may be a better way, but that’s the way I did it.

From: ozmoss-boun...@ozmoss.commailto:ozmoss-boun...@ozmoss.com 
[mailto:ozmoss-boun...@ozmoss.com] On Behalf Of Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about it,,, google hasn't been very helpful

thanks
ajay



Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us. If it has been sent to you by mistake, legal privilege is 
not waived or lost and you are not entitled to use it in any way. Stockland and 
its subsidiaries reserve the right to monitor e-mail communication through its 
networks.

__
This email has been scanned by the Symantec Email Security.cloud service.
For more information please visit http://www.symanteccloud.com
__

The content of this email is confidential to the intended recipient at the 
email address to which it has been addressed. It may not be disclosed to, or 
used by, anyone other than this addressee, nor may it be copied in any way. If 
received in error, please contact the author and then delete the message from 
your system. 
Please note that neither Keller Australia nor the sender accepts any 
responsibility for viruses and it is your responsibility to scan the email and 
attachments (if any).
Visit http://www.keller.com.au/ for more information. 


This e-mail message has been scanned for Viruses and Content and cleared by 
MailMarshal 

___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss

RE: Different masterpages in site collection

2015-01-26 Thread Nigel Hertz
Howdy

Personally, I would set the one for ‘the rest of the site’ on the homepage, and 
tell it to “reset all subsites to inherit”. Once that’s done, change it to set 
the homepage masterpage as ‘live’, but DESELECT the ‘reset subsites’ bit.

There may be a better way, but that’s the way I did it.

From: ozmoss-boun...@ozmoss.com [mailto:ozmoss-boun...@ozmoss.com] On Behalf Of 
Ajay
Sent: Friday, 23 January 2015 9:30 PM
To: ozMOSS
Subject: Different masterpages in site collection

Hi guys,
i want to use 2 different masterpages in site collection, one for home page and 
other for rest of the site.

how to go about it,,, google hasn't been very helpful

thanks
ajay



Stockland Notice: If this communication has been sent to you by mistake, please 
delete and notify us. If it has been sent to you by mistake, legal privilege is 
not waived or lost and you are not entitled to use it in any way. Stockland and 
its subsidiaries reserve the right to monitor e-mail communication through its 
networks.
___
Sponsored by Infotext - Amazing Search for Microsoft SharePoint - 
http://www.infotext.com/
ozmoss mailing list
ozmoss@ozmoss.com
http://prdlxvm0001.codify.net/mailman/listinfo/ozmoss