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...










share|improve this question









New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • 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















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...










share|improve this question









New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • 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













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...










share|improve this question









New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











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






share|improve this question









New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 days ago









Arvind Gehlot

1,137425




1,137425






New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









Rick

1405




1405




New contributor




Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Rick is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • 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










  • 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










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.



enter image description here



If you want to reset InsertOptions of an item you can do it programatically using:





  1. C# Code:



    item.Fields["__Masters"].Reset();




  2. Using Powershell Extension :



    Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"








share|improve this answer























  • 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


















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:




  1. 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.


  2. In the Versions ribbon tab, click the Reset button:



    Reset Field Values dialog



  3. Check the box next to the Insert options field and click the Reset button.







share|improve this answer





















    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "664"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });






    Rick is a new contributor. Be nice, and check out our Code of Conduct.










     

    draft saved


    draft discarded


















    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

























    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.



    enter image description here



    If you want to reset InsertOptions of an item you can do it programatically using:





    1. C# Code:



      item.Fields["__Masters"].Reset();




    2. Using Powershell Extension :



      Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"








    share|improve this answer























    • 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















    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.



    enter image description here



    If you want to reset InsertOptions of an item you can do it programatically using:





    1. C# Code:



      item.Fields["__Masters"].Reset();




    2. Using Powershell Extension :



      Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"








    share|improve this answer























    • 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













    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.



    enter image description here



    If you want to reset InsertOptions of an item you can do it programatically using:





    1. C# Code:



      item.Fields["__Masters"].Reset();




    2. Using Powershell Extension :



      Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"








    share|improve this answer














    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.



    enter image description here



    If you want to reset InsertOptions of an item you can do it programatically using:





    1. C# Code:



      item.Fields["__Masters"].Reset();




    2. Using Powershell Extension :



      Example: Get-Item "master:/sitecore/content/home" | Reset-ItemField -IncludeStandardFields -Name "__Masters"









    share|improve this answer














    share|improve this answer



    share|improve this answer








    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


















    • 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










    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:




    1. 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.


    2. In the Versions ribbon tab, click the Reset button:



      Reset Field Values dialog



    3. Check the box next to the Insert options field and click the Reset button.







    share|improve this answer

























      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:




      1. 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.


      2. In the Versions ribbon tab, click the Reset button:



        Reset Field Values dialog



      3. Check the box next to the Insert options field and click the Reset button.







      share|improve this answer























        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:




        1. 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.


        2. In the Versions ribbon tab, click the Reset button:



          Reset Field Values dialog



        3. Check the box next to the Insert options field and click the Reset button.







        share|improve this answer












        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:




        1. 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.


        2. In the Versions ribbon tab, click the Reset button:



          Reset Field Values dialog



        3. Check the box next to the Insert options field and click the Reset button.








        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 2 days ago









        Dan Sinclair

        1,034521




        1,034521






















            Rick is a new contributor. Be nice, and check out our Code of Conduct.










             

            draft saved


            draft discarded


















            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.















             


            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]