Display Product Attributes in Category Page

Posted By JOHN HALITZOGLOU Fri 26 Feb 2016
Add to Favorites0
Author Message
JOHN HALITZOGLOU
 Posted Fri 26 Feb 2016
Supreme Being

Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)Supreme Being - (4,280 reputation)

Group: Forum Members
Last Active: Mon 20 Feb 2017
Posts: 8, Visits: 33
In the page of category which appear all products i would like display attributes next to the product (features like author, isbn, pages etc.)
Ηow I can do this?
Tiggywiggler
 Posted Sun 1 May 2016
Supreme Being

Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)Supreme Being - (105,360 reputation)

Group: Forum Members
Last Active: Mon 6 Dec 2021
Posts: 235, Visits: 750
First you need to know what template your category view is using.

If you go into the admin section and 'Edit' your category you will see an option for [Product Display Type]. You then need to find the Product View Template for that 'Product Display Type'.

For example, if the [Product Display Type] was "Extended", then you need to find the "Extended Product Template". This can be found at ~/UserControls/Templates/ProductTemplateExtended.ascx.

You can now either (1) add the details you want to this template, or, (2) copy this template into a new template and then add the details you want to the new template. You will need to know how to code to do this, but isn't that the point of open source! Smile

In this example I would add your extra data in the marked location:

<p class="description">
<asp:Literal ID="litProductDesc" runat="server" Text='<%# CkartrisDisplayFunctions.TruncateDescription(Eval("P_Desc"), KartSettingsManager.GetKartConfig("frontend.products.display.truncatedescription")) %>'></asp:Literal></p>

ADD YOUR NEW INFORMATION HERE

<asp:HyperLink ID="lnknMore" runat="server" NavigateUrl='<%# Eval("P_ID", "~/Product.aspx?ProductID={0}") %>'

Now, there is the obvious question of where are you going to get that data? Are you going to add it to the database, pull it from an existing data base field, or reach outside of the website to get it from another source, however, you will need to work that one out.

Adding a new field to the SQL Server database and then linking it to the fields is not a simple process and would be beyond the scope of a forum post.


We are always willing to help out the community or pitch in to help you fix a problem. However, if you want a complete solution made such as a code module or new feature added you have two options. Either
1) Reach out to the Kartris internal development team at http://www.kartris.com/Contact.aspx.
2) Contact one of the Kartris approved partners at http://www.kartris.com/t-Worldwide-Developers.aspx.

Have fun and good luck coding.

Similar Topics

Expand / Collapse

Reading This Topic

Expand / Collapse

Back To Top