Category Custom Fields UI

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
User avatar
hassonmike
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Tue Apr 19, 2011 2:13 pm
Contact:

Category Custom Fields UI

Post by hassonmike » Tue May 31, 2011 2:22 pm

So I have purchased this item Category Custom Fields UI, but am cant seem to figure out how to get it to display the custom categories. There is no documentation telling how this can be done, I'm just wondering if anyone else has had any success with this, and if so, could provide some steps taken in order to get the custom category fields to be displayed on the frontend.

Thanks

User avatar
hassonmike
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Tue Apr 19, 2011 2:13 pm
Contact:

Re: Category Custom Fields UI

Post by hassonmike » Thu Jun 16, 2011 10:54 am

So I got no help from lousy documentation, then their software support suggested hiring a programmer just to use this (then why purchase this software at all!?!?) and nobody here has any experience with this???

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

Re: Category Custom Fields UI

Post by s_ismail » Fri Jun 17, 2011 3:04 am

You may use Category Custom fields like this

Code: Select all

string customField1=string.Empty;
       CommerceBuilder.Stores.CustomFieldCollection  categoryCustomField=CommerceBuilder.Stores.CustomFieldDataSource.LoadForCriteria("ForeignKeyId=CategoryId");
       foreach (CommerceBuilder.Stores.CustomField customField in categoryCustomField)
       {
           if (customField.FieldName.Equals("CAT_CUST_FIELD_1"))
               customField1 = customField.FieldValue;
       }

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: Category Custom Fields UI

Post by jmestep » Fri Jun 17, 2011 5:48 am

Who did you purchase it from?
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

User avatar
hassonmike
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Tue Apr 19, 2011 2:13 pm
Contact:

Re: Category Custom Fields UI

Post by hassonmike » Fri Jun 17, 2011 10:42 am

Judy, I purchased this from plugables.

Ismail, I placed the code into an acsx.cs page but the field still does not show.

Can i create a conlib reference to this? Or am I going about this all wrong? Some clear documentation sure would help.


How would i create a new ascx file containing only the reference to a custom field called "QuickSummary"? Or if there is a better way to do it, please do let me know

User avatar
s_ismail
Commander (CMDR)
Commander (CMDR)
Posts: 162
Joined: Mon Nov 09, 2009 12:20 am
Contact:

Re: Category Custom Fields UI

Post by s_ismail » Sat Jun 18, 2011 3:58 am

Hello,
I have uploaded Control for displaying Category Custom Fields on Category Pages. Just download it and place inside your ConLib folder and use Like this one
[[ConLib:CategoryCustFieldControl]]

User avatar
hassonmike
Lieutenant (LT)
Lieutenant (LT)
Posts: 76
Joined: Tue Apr 19, 2011 2:13 pm
Contact:

Re: Category Custom Fields UI

Post by hassonmike » Mon Jun 27, 2011 12:26 pm

Yes! This is perfect! Thank you very much!

Post Reply