How to edit the insert options for existing content using that template?
up vote
2
down vote
favorite
I'm VERY new to Sitecore so forgive me, if this question doesn't make any sense.
I've added an insert option to the __StandardValues
of a template. I expect the content using this template to have the this new insert option but it doesn't.
Is there another step to this?
or do changes to templates not affect those content that have already been created using the template...
templates
New contributor
add a comment |
up vote
2
down vote
favorite
I'm VERY new to Sitecore so forgive me, if this question doesn't make any sense.
I've added an insert option to the __StandardValues
of a template. I expect the content using this template to have the this new insert option but it doesn't.
Is there another step to this?
or do changes to templates not affect those content that have already been created using the template...
templates
New contributor
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
I'm logged in as admin
– Rick
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm VERY new to Sitecore so forgive me, if this question doesn't make any sense.
I've added an insert option to the __StandardValues
of a template. I expect the content using this template to have the this new insert option but it doesn't.
Is there another step to this?
or do changes to templates not affect those content that have already been created using the template...
templates
New contributor
I'm VERY new to Sitecore so forgive me, if this question doesn't make any sense.
I've added an insert option to the __StandardValues
of a template. I expect the content using this template to have the this new insert option but it doesn't.
Is there another step to this?
or do changes to templates not affect those content that have already been created using the template...
templates
templates
New contributor
New contributor
edited 2 days ago
Arvind Gehlot
1,137425
1,137425
New contributor
asked 2 days ago
Rick
1405
1405
New contributor
New contributor
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
I'm logged in as admin
– Rick
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago
add a comment |
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
I'm logged in as admin
– Rick
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
I'm logged in as admin
– Rick
2 days ago
I'm logged in as admin
– Rick
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago
add a comment |
2 Answers
2
active
oldest
votes
up vote
3
down vote
accepted
This is a normal behavior.
You need to reset the insert options of the item to see the changes on standard values,if you create items based on a template and then you add to the standardvalues of template new insert options.
Please have a look on below picture. You need to press Reset button from Insert Options section.
If you create new items based on the template you will see the changes from Standard Value.
If you want to reset InsertOptions of an item you can do it programatically using:
C# Code:
item.Fields["__Masters"].Reset();
Using Powershell Extension :
Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
|
show 1 more comment
up vote
0
down vote
Reset Insert Options field to standard values
If the Insert options field of the item was previously edited, it will have its own value instead of taking its value from the __Standard Values
item for that template. (This is true even if you updated the item's value back to what was stored in the __Standard Values
item).
To remove the item-specific value and fall back to the standard value, you can use the Reset button:
- In the Content Editor, under the View ribbon tab, check the Standard fields checkbox to show standard fields, of which the Insert options field (technically called
__Masters
) is one.
In the Versions ribbon tab, click the Reset button:
Check the box next to the Insert options field and click the Reset button.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
This is a normal behavior.
You need to reset the insert options of the item to see the changes on standard values,if you create items based on a template and then you add to the standardvalues of template new insert options.
Please have a look on below picture. You need to press Reset button from Insert Options section.
If you create new items based on the template you will see the changes from Standard Value.
If you want to reset InsertOptions of an item you can do it programatically using:
C# Code:
item.Fields["__Masters"].Reset();
Using Powershell Extension :
Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
|
show 1 more comment
up vote
3
down vote
accepted
This is a normal behavior.
You need to reset the insert options of the item to see the changes on standard values,if you create items based on a template and then you add to the standardvalues of template new insert options.
Please have a look on below picture. You need to press Reset button from Insert Options section.
If you create new items based on the template you will see the changes from Standard Value.
If you want to reset InsertOptions of an item you can do it programatically using:
C# Code:
item.Fields["__Masters"].Reset();
Using Powershell Extension :
Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
|
show 1 more comment
up vote
3
down vote
accepted
up vote
3
down vote
accepted
This is a normal behavior.
You need to reset the insert options of the item to see the changes on standard values,if you create items based on a template and then you add to the standardvalues of template new insert options.
Please have a look on below picture. You need to press Reset button from Insert Options section.
If you create new items based on the template you will see the changes from Standard Value.
If you want to reset InsertOptions of an item you can do it programatically using:
C# Code:
item.Fields["__Masters"].Reset();
Using Powershell Extension :
Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"
This is a normal behavior.
You need to reset the insert options of the item to see the changes on standard values,if you create items based on a template and then you add to the standardvalues of template new insert options.
Please have a look on below picture. You need to press Reset button from Insert Options section.
If you create new items based on the template you will see the changes from Standard Value.
If you want to reset InsertOptions of an item you can do it programatically using:
C# Code:
item.Fields["__Masters"].Reset();
Using Powershell Extension :
Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"
edited 2 days ago
answered 2 days ago
Vlad Iobagiu
12.4k2931
12.4k2931
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
|
show 1 more comment
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
Will that apply the change to all items, or will I need to do this manually to each item using the changed template?
– Rick
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
it will apply just to the current item
– Vlad Iobagiu
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
So if I already had 1000 pages using that template, and I change the insert options, I would have to go through 1000 pages and hit the "Reset Templates" button one by one?
– Rick
2 days ago
1
1
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Use Sitecore Powershell extension.
– Vlad Iobagiu
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
Ok - I don't have 1000 pages but was just wondering. thanks
– Rick
2 days ago
|
show 1 more comment
up vote
0
down vote
Reset Insert Options field to standard values
If the Insert options field of the item was previously edited, it will have its own value instead of taking its value from the __Standard Values
item for that template. (This is true even if you updated the item's value back to what was stored in the __Standard Values
item).
To remove the item-specific value and fall back to the standard value, you can use the Reset button:
- In the Content Editor, under the View ribbon tab, check the Standard fields checkbox to show standard fields, of which the Insert options field (technically called
__Masters
) is one.
In the Versions ribbon tab, click the Reset button:
Check the box next to the Insert options field and click the Reset button.
add a comment |
up vote
0
down vote
Reset Insert Options field to standard values
If the Insert options field of the item was previously edited, it will have its own value instead of taking its value from the __Standard Values
item for that template. (This is true even if you updated the item's value back to what was stored in the __Standard Values
item).
To remove the item-specific value and fall back to the standard value, you can use the Reset button:
- In the Content Editor, under the View ribbon tab, check the Standard fields checkbox to show standard fields, of which the Insert options field (technically called
__Masters
) is one.
In the Versions ribbon tab, click the Reset button:
Check the box next to the Insert options field and click the Reset button.
add a comment |
up vote
0
down vote
up vote
0
down vote
Reset Insert Options field to standard values
If the Insert options field of the item was previously edited, it will have its own value instead of taking its value from the __Standard Values
item for that template. (This is true even if you updated the item's value back to what was stored in the __Standard Values
item).
To remove the item-specific value and fall back to the standard value, you can use the Reset button:
- In the Content Editor, under the View ribbon tab, check the Standard fields checkbox to show standard fields, of which the Insert options field (technically called
__Masters
) is one.
In the Versions ribbon tab, click the Reset button:
Check the box next to the Insert options field and click the Reset button.
Reset Insert Options field to standard values
If the Insert options field of the item was previously edited, it will have its own value instead of taking its value from the __Standard Values
item for that template. (This is true even if you updated the item's value back to what was stored in the __Standard Values
item).
To remove the item-specific value and fall back to the standard value, you can use the Reset button:
- In the Content Editor, under the View ribbon tab, check the Standard fields checkbox to show standard fields, of which the Insert options field (technically called
__Masters
) is one.
In the Versions ribbon tab, click the Reset button:
Check the box next to the Insert options field and click the Reset button.
answered 2 days ago
Dan Sinclair
1,034521
1,034521
add a comment |
add a comment |
Rick is a new contributor. Be nice, and check out our Code of Conduct.
Rick is a new contributor. Be nice, and check out our Code of Conduct.
Rick is a new contributor. Be nice, and check out our Code of Conduct.
Rick is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsitecore.stackexchange.com%2fquestions%2f15160%2fhow-to-edit-the-insert-options-for-existing-content-using-that-template%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You cannot see templates in insert options as admin or regular content editors?
– Peter Prochazka
2 days ago
I'm logged in as admin
– Rick
2 days ago
If you create a new item from this template, does it have the right insert options?
– Dan Sinclair
2 days ago