Questions tagged [episerver-8]

EPiServer is a web content management and e-commerce software platform based on the Microsoft .NET stack.

EPiServer 8 is the first major release from EPiServer since the company moved to a continuous release approach.

The largest new feature is Projects, which allows editors to create and preview a group of content items together, and manage publication of the content in one go.

There are also performance improvements, enhanced block management and better support for canonical urls.

Internet Explorer 9 is no longer supported.

30 questions
0
votes
0 answers

PROPERTY LIST - Is it possible to Customize appearance in back office

I'm using a property list in the back office. I have an image as one of the properties, the problem I have is it only shows the content Id in the property list table, this is a really poor UI experince. In addition one of the properties are a URL,…
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
0
votes
1 answer

Episerver - How to select Items from List based on the ContentType

I have a list of IContent Items, I know that one of the items will be of a particular type. Currently I am getting this Item with this code: var result = ancestors.SingleOrDefault(x => x.ContentTypeID == 104); I know the name of MyType how can do…
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
0
votes
1 answer

Episerver - Automatically delete Properties from Episerver when deleted in code

I'm working on my first EPI Server project and I have noticed that when I create a property on a 'Page Type' in C# Code, compile it, I can see the properties in Episerver. However when I then delete that property in code the property still appears…
Ayo Adesina
  • 2,231
  • 3
  • 37
  • 71
0
votes
1 answer

EPiServer Remote Certification Exam Registration Purchase Order

While registering for the upcoming EPiServer certification exam, the sign up page shows a field named "Purchase order/Invoice Reference *" under Invoice Details section. I don't have such a Purchase order/Invoice Reference. Also its a mandatory…
MobDev
  • 1,489
  • 1
  • 17
  • 26
0
votes
2 answers

EPIServer CMS Development

Hi I just started looking on EPiServer CMS and like to know is there any EPIServer certification practice tests available? I have only checked EPiServer CMS portion, please let me know whether the EPiServer certification exams contains questions…
MobDev
  • 1,489
  • 1
  • 17
  • 26
0
votes
0 answers

Change SelectMany Separator

I'm using the SelectMany attribute in the following way: [SelectMany(SelectionFactoryType = typeof(TagsSelectionFactory))] public virtual string Tags { get; set; } With the following SelectionFactory: public class TagsSelectionFactory :…
Yoav
  • 3,326
  • 3
  • 32
  • 73
0
votes
0 answers

MVC Html.BeginForm - Move /en/ to start of the url

I'm trying to create a form in episerver, it's just an ASP.NET MVC site. The piece of code I'm using is this @using (Html.BeginForm("Index", "Search", new { language = ContentLanguage.PreferredCulture.Name }, FormMethod.Get)) { ... } When the…
0
votes
0 answers

EpiServer - load block list based on property on each block

If I want to load a list of blocks based on a type I know I can do something like the following: var blockType = contentTypeRepository.Load(); But if I want to load the list based on both a type and a property on each block called tag…
Jacob
  • 409
  • 1
  • 6
  • 16
0
votes
2 answers

Episerver log overflow with Web HttpException 0x80004005

I'm using EpiServer 8, on several servers which connected to the same DB. On all of them I have every 1-2 seconds the following log message, which causes the log files to be huge and hard to navigate: 2015-12-23 08:19:28,728 [62] ERROR…
Ziv Weissman
  • 4,400
  • 3
  • 28
  • 61
0
votes
1 answer

EpiServer marks Rootchildren as "not in use"

In EpiServer, If an item is not being "used" or placed inside a contentarea, EpiServer marks the item as "The item is not in use", like this: I have a contentarea where one can point out a media folder and it will list all files under that root,…
dont_trust_me
  • 540
  • 8
  • 24
0
votes
2 answers

Render scripts in block after page scripts loads (EPI 8/ MVC)

I am building a dynamic page type, I want to load to it different scripts based on the block that was loaded in a certian ContentArea. This is the Area: [AllowedTypes(new[] { typeof(Types.SomeBlockType)})] public virtual ContentArea SomeArea { get;…
Ziv Weissman
  • 4,400
  • 3
  • 28
  • 61
0
votes
1 answer

Can I give SEO-friendly URL Segment's to action on a PageController?

Is it possible to define the URL segment for an action on a PageController? Take for example the following controller, public class MyPageController : PageController { public ActionResult Index(MyPageData currentPage) { …
Greg B
  • 14,597
  • 18
  • 87
  • 141
0
votes
1 answer

EPiServer 8. XForm doesn't send mail and doesn't redirect

As the title says, my problem is quite easy to describe. I have an Xform in EPiServer CMS 8 that does not send a mail after data is submittet and there is not even redirection to the chosen response page. There is no extra coding in the page…
Kenia GH
  • 33
  • 5
0
votes
1 answer

How do I trigger the payment process in EPiServer Commerce 8?

I'm working on an EPiServer 8 MVC implementation and I can't see how to trigger the payment process. I've got my payment provider registered in Commerce Manager and I'm adding a payment to my OrderForm, Accepting Changes on the Cart, running the…
Greg B
  • 14,597
  • 18
  • 87
  • 141
-1
votes
1 answer

What's the correct way to link to EPiServer shell style sheets in an EPiServer plugin?

I have an EPiServer plugin that links to style resources like this
Andreas
  • 2,336
  • 2
  • 28
  • 45
1
2