Questions tagged [orchardcms-1.10]

Orchard is a Content Management System (CMS) build on top of ASP.NET. The project is aimed at delivering applications and reusable components on the ASP.NET MVC platform. Version 1.10 was released in March 2016. This tag is intended for questions that specifically regard Version 1.10.x.

Orchard is a Content Management System (CMS) build on top of ASP.NET. The project is aimed at delivering applications and reusable components on the ASP.NET MVC platform. Version 1.10 was released in March 2016. This tag is intended for questions that specifically regard Version 1.10.x.

See http://www.orchardproject.net/ and https://github.com/OrchardCMS/Orchard.

64 questions
3
votes
1 answer

Alternate shape for EditorTemplate of Field is not being recognized

I need an alternate for the EditorTemplate of an Enumerator Field that's used when the Field has a particular name (PublishingMethod). Based on the docs, I created a view with the pattern [ShapeType__FieldName] in the same folder as the original…
Velair
  • 227
  • 3
  • 12
3
votes
1 answer

Getting error during creating a widget using Orchard

I was trying to create a widget from a fresh installed of Orchad Src CMS. The site is running Ok but when I was on Widget page, getting error: There are no widget layers defined. A layer will need to be added in order to add widgets to any part of…
blueMoon
  • 117
  • 1
  • 8
2
votes
1 answer

Overriding the Password Format in Orchard

I am trying to override the password format (e.g. Password length and complexity) of the Orchard Site. I can't seem to find anywhere in the Admin Section however I have found the MembershipSettings class which returns the format, however I am not…
Joseph Moore
  • 364
  • 2
  • 8
2
votes
1 answer

Load catalogs from external DB and link them to ContentParts as ContentRecords

Example: I have a countries catalog stored in another DB and I need to use it as a property in some ContentParts. I'm trying to make the connection without interfering much with Orchard wiring. public class MoviePart :…
Velair
  • 227
  • 3
  • 12
2
votes
1 answer

Layer rule for all pages except two in Orchard CMS

I am trying to create a layer rule in the widgets section that shows a widget on all pages except two (or more). I've tried a number of options, in some cases the rule will exclude one page but not the other, in other cases it does not exclude…
wentz
  • 700
  • 5
  • 15
2
votes
2 answers

Orchard Widget for front end DB Access

I'm new to Orchard development, C# and MVC, so forgive me if this is actually simple... I used Orchard CMS in my profession so I understand the widgets, layer zones, content parts etc... however, I have tasked my self with improving one of the…
Odatia
  • 65
  • 1
  • 7
2
votes
1 answer

Not apply .po files for module in Orchard CMS

I install Orchard CMS 1.10 and take russian translate from https://crowdin.com/project/orchard-cms and unpack to Orchard.Web. When i added and enabled ru-Ru localization all work good for razor views. But for module isn't. For example i try change…
Ievgen
  • 57
  • 5
1
vote
0 answers

Orchard CMS won't play nice with PayPal IPN + GA?

This question has one main goal; to bring in Response data from an HTTP POST sent by PayPal into GA. Validating the IPN has not been the issue; all PayPal data is successfully received. The Issue lies in trying to send the data to GA; there is…
1
vote
1 answer

how we can get media files from remote server to Orchard media module

I'm new to Orchard CMS. I was trying to figured out the way to get the Media files from my remote drive into Orchard Media module(On Orchard Dashboard).
Gopi
  • 23
  • 4
1
vote
1 answer

How to forcefully refresh persister collection/mappings.bin of NHibernate when a new table/entity is added in a Orchard CMS based web app?

I created a new table via Migrations.cs file : // New table - StaffAddress SchemaBuilder.CreateTable("StaffAddress", tb => tb .Column("StaffAddressId", p => p.PrimaryKey().Identity()) …
1
vote
0 answers

orchard IRepository.Create error

I'm working on http://www.ideliverable.com/blog/writing-an-orchard-webshop-module-from-scratch-part-9 my orchard version is 1.9 OrderRecord.cs public class OrderRecord { public virtual int Id { get; set; } public virtual int…
zaesfgr
  • 11
  • 2
1
vote
2 answers

Displaying Container Part Items From Content Picker Field

I have a content type called DayTile which I have setup with a content picker field that is limited to HotelSection type. This type is a container for the Hotels type. I want to render all the hotels in the HotelSection when the DayTile has that…
1
vote
0 answers

Token syntax to get value of a field inside a workflow?

I've added a Boolean Field (IsUrgent) to many content types, and I've created a workflow that starts when any of those contents is created. Even though my field is listed in the Token Helper Tooltip, it's not showing anything. Looking at this…
Velair
  • 227
  • 3
  • 12
1
vote
2 answers

How to get FileInfo objects from the Orchard Media folder?

I'm trying to create a custom ImageFilter that requires me to temporarily write the image to disk, because I'm using a third party library that only takes FileInfo objects as parameters. I was hoping I could use IStorageProvider to easily write and…
Lawyerson
  • 919
  • 1
  • 7
  • 25
1
vote
2 answers

Correct JSON string format for the body request in a WebRequest Activity inside of a Orchard Workflow?

I'm trying to make a POST in a WebRequest Activity, but the body is always empty if I select JSON format: I have tried escaping and unescaping characters, with and without quotes and spaces, etc: {\"value\": [{\"@search.action\": \"delete\",\"id\":…
Velair
  • 227
  • 3
  • 12
1
2 3 4 5