customize category page columns
customize category page columns
I couldn't to change columns in category page. is this customizable? For instance, it displays products in category page in three column, if I want to change to display to four columns. Are there anyone do this before? Thanks.
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: customize category page columns
In ConLib/CategoryGridPage.ascx.cs, you can change it in this code near the top of the page
Also change in ConLib/CategoryGridPage.ascx
and
Code: Select all
public partial class CategoryGridPage : System.Web.UI.UserControl
{
private int _cols = 3;
Code: Select all
<asp:DataList ID="ProductList" runat="server" RepeatColumns="3"
Code: Select all
<ItemStyle HorizontalAlign="center" VerticalAlign="bottom" Width="33%" CssClass="tableNode" />
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
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
Re: customize category page columns
In able 7 there was an option for manage scriplets under wbsite menu. Where did this option go under able gold. We can't find it anywhere. The website has some crpytic reference to it as something under mechant administration...
"Although you can edit the content of scriptlets using the on screen editor, for other management tasks and for advanced features you need to use the scriptlet management pages in the merchant administration."
Can anyone help?
"Although you can edit the content of scriptlets using the on screen editor, for other management tasks and for advanced features you need to use the scriptlet management pages in the merchant administration."
Can anyone help?
Re: customize category page columns
Scriptlets are removed from Gold. Now you create Category, Product display pages directly from admin. You can also create content pages under Website menu. These pages can render ConLib control which you can define similar to how we used them AC7 like [[ConLib:ControlName Parameter="Parameter Value"]]. Please read my response in this thread viewtopic.php?f=65&t=17161
Re: customize category page columns
Mazhar
I didn't follow your post. Its not clear at all.
Are you saying we need to make a copy of an existing page and edit the page outside of Able Gold Admin.
Can we use a text editor?
Can we copy the source conlib, modify it and put it in the same conlib folder?
Can you provide a more informative link than your original post whcih wasn't helpful.
Thanks
I didn't follow your post. Its not clear at all.
Are you saying we need to make a copy of an existing page and edit the page outside of Able Gold Admin.
Can we use a text editor?
Can we copy the source conlib, modify it and put it in the same conlib folder?
Can you provide a more informative link than your original post whcih wasn't helpful.
Thanks
Re: customize category page columns
Please read this help article http://help.ablecommerce.com/faqs/ablec ... merce_.htm
It contains a PDF guide hopefully you will find that helpful.
It contains a PDF guide hopefully you will find that helpful.
Re: customize category page columns
You are not making this easy. You sent me to the main landing page for teh customization code. Can you give me a specific URL to exactly what needs to be done in gold if its not too much touble.
Re: customize category page columns
As I mentioned earlier scriptlets are gone from Gold. Right now Gold works using master page and child pages.Tea-Dev wrote:In able 7 there was an option for manage scriplets under wbsite menu. Where did this option go under able gold. We can't find it anywhere. The website has some crpytic reference to it as something under mechant administration...
Those are not scriptlet content but dynamic page contents served from database. You can quickly create three type of pages which are Content Pages, Category Display Pages and Lastly the product display pages. I am not sure thre is any easy was to explain how to customize Gold in few lines you will need to read the guide I mentioned. The PDF link is the very first link in first line. Anyway here is the PDF guide link http://help.ablecommerce.com/developers ... rGuide.pdfTea-Dev wrote: "Although you can edit the content of scriptlets using the on screen editor, for other management tasks and for advanced features you need to use the scriptlet management pages in the merchant administration."
Can anyone help?
Re: customize category page columns
Thanks but the guide was no help. We ended up editing the original sourcefiles in conlib fodler.