Try our conversational search powered by Generative AI!

How to get new page class to appear in list of page types in UI?

Vote:
 

If you create a hellow world page, e.g:

namespace DxcAlloy.Models.Pages
{
    [ContentType(DisplayName = "HelloWorld", GUID = "5e4176f9-613d-4c9e-9c85-37dd1d1d70d9", Description = "")]
    public class HelloWorld : PageData
    {

        [Display(
            GroupName = SystemTabNames.Content,
            Order = 10)]
        public virtual ContentArea stuff { get; set; }
    }
}

It does not appear in the list of pages when you select new page in the CMS editor.  How do we get it added to that list? The page was created with the episerver "page type" Add new item so I am guessing it gerneated a unique GUID.

#224507
Jun 22, 2020 6:47
Vote:
 

Hi Johnv,

It should appear in the selection. can you make sure that it is available in the admin->content types? (Go to admin and select the content type tab)

And if not then try to recreate it from scratch

#224509
Edited, Jun 22, 2020 6:53
johnv - Jun 22, 2020 7:31
Yes, it appears in Admin->ContentType->Page types.
Vote:
 

It is possible to limit what page types can be created as children of other pages with specific page types.

In an Alloy site you have something like:

   [AvailableContentTypes(
        Availability.Specific,
        Include = new[] { typeof(ContainerPage), typeof(ProductPage), typeof(StandardPage), typeof(ISearchPage), typeof(LandingPage), typeof(ContentFolder) }, // Pages we can create under the start page...
        ExcludeOn = new[] { typeof(ContainerPage), typeof(ProductPage), typeof(StandardPage), typeof(ISearchPage), typeof(LandingPage) })] // ...and underneath those we can't create additional start pages

You can also find this in admin mode, select content types and a page type, then "Settings" and "Available page types".

#224511
Edited, Jun 22, 2020 7:04
johnv - Jun 22, 2020 7:33
Yep, this was it. In Alloy, the pages you can create are limited to a subset. Which file is "[AvailableContentTypes(" defined? I was able to chaine in the admin UI.
Tomas Hensrud Gulla - Jun 22, 2020 7:39
It can be defined on all content types, see example from the start page in my comment above.

Or you can add this to your content type, to make it available on all other pages:
[AvailableContentTypes(Availability.All, IncludeOn = new[] { typeof(SitePageData)})]
Vote:
 

Just add HelloWorld to the Include array, on the pagetypes where you would like to be able to add HelloWorld as a child.

#224514
Jun 22, 2020 7:33
This topic was created over six months ago and has been resolved. If you have a similar question, please create a new topic and refer to this one.
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.