How do you display the attribues added for a product on that products page in the ecommerce app?
|
Jackie,
Some more information will helpful. -- Thanks and Regards Sumit Pandit. HotWaxMedia, Inc http://www.hotwaxmedia.com On Sep 29, 2008, at 4:36 PM, jaki wrote: > > How do you display the attribues added for a product on that > products page in > the ecommerce app? > -- > View this message in context: http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19721812.html > Sent from the OFBiz - User mailing list archive at Nabble.com. > |
I have added a few custom attributes for a product using its attributes page in catalog manager. But none of them get displayed in the ecommerce site for that product. Is there something you have to set or can this be done only by code modification?
|
Hello Jackie,
The entity used for this is ProductAttribute & relation between Product and ProductAttribute is one-to-many. You can directly do this by code modification. Nothing has to be set for it. Regards Chirag Manocha HotWax Media http://www.hotwaxmedia.com ============================ Email :- [hidden email] Contact :- +91-982-631-9099 jaki wrote: > I have added a few custom attributes for a product using its attributes page > in catalog manager. But none of them get displayed in the ecommerce site for > that product. Is there something you have to set or can this be done only by > code modification? > > > Sumit Pandit-3 wrote: > >> Jackie, >> >> Some more information will helpful. >> >> >> -- >> Thanks and Regards >> Sumit Pandit. >> HotWaxMedia, Inc >> http://www.hotwaxmedia.com >> >> On Sep 29, 2008, at 4:36 PM, jaki wrote: >> >> >>> How do you display the attribues added for a product on that >>> products page in >>> the ecommerce app? >>> -- >>> View this message in context: >>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19721812.html >>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>> >>> >> >> > > |
In reply to this post by Jaki-2
Jackie,
I got what you want but can you please more elaborate with any example(if possible ) that what kind of attribute you want to display on the ecommerce page. -- Thanks and Regards Sumit Pandit. HotWaxMedia, Inc http://www.hotwaxmedia.com On Sep 29, 2008, at 4:55 PM, jaki wrote: > > I have added a few custom attributes for a product using its > attributes page > in catalog manager. But none of them get displayed in the ecommerce > site for > that product. Is there something you have to set or can this be done > only by > code modification? > > > Sumit Pandit-3 wrote: >> >> Jackie, >> >> Some more information will helpful. >> >> >> -- >> Thanks and Regards >> Sumit Pandit. >> HotWaxMedia, Inc >> http://www.hotwaxmedia.com >> >> On Sep 29, 2008, at 4:36 PM, jaki wrote: >> >>> >>> How do you display the attribues added for a product on that >>> products page in >>> the ecommerce app? >>> -- >>> View this message in context: >>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19721812.html >>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>> >> >> >> > > -- > View this message in context: http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19722087.html > Sent from the OFBiz - User mailing list archive at Nabble.com. > |
Suppose I have a laptop as a product. I have added attributes such as cpu type, memory, video adapter, etc. for the product using catalog manager. I would like for these attributes to be displayed in that products page in the ecommerce site along with other info like price, weight, etc. which usually gets displayed for all products. I was hoping for a simpler way to do this than having to modify the code.
|
Jackie,
I now I got your question, The type of product you are talking about is AGGREGATED product. These are the configurable type product, as you mention in your example. For this purpose following entities are associated with it : 1) ProductConfigItem : Here you have to add your configuration item (CPU type , memory.......) . 2) ProductConfig : Now we have to associate it (configItemId) to the productId. 3) ProductConfigOption : Now in next phase we need to provide the option to the configItemId and here you can add your all options (256MB, 512MB, 1024MB....) I think this will help. -- Thanks and Regards Sumit Pandit. HotWaxMedia, Inc http://www.hotwaxmedia.com On Sep 29, 2008, at 6:15 PM, jaki wrote: > > Suppose I have a laptop as a product. I have added attributes such > as cpu > type, memory, video adapter, etc. for the product using catalog > manager. I > would like for these attributes to be displayed in that products > page in the > ecommerce site along with other info like price, weight, etc. which > usually > gets displayed for all products. I was hoping for a simpler way to > do this > than having to modify the code. > > > Sumit Pandit-3 wrote: >> >> Jackie, >> >> I got what you want but can you please more elaborate with any >> example(if possible ) that what kind of attribute you want to >> display >> on the ecommerce page. >> >> >> -- >> Thanks and Regards >> Sumit Pandit. >> HotWaxMedia, Inc >> http://www.hotwaxmedia.com >> >> On Sep 29, 2008, at 4:55 PM, jaki wrote: >> >>> >>> I have added a few custom attributes for a product using its >>> attributes page >>> in catalog manager. But none of them get displayed in the ecommerce >>> site for >>> that product. Is there something you have to set or can this be done >>> only by >>> code modification? >>> >>> >>> Sumit Pandit-3 wrote: >>>> >>>> Jackie, >>>> >>>> Some more information will helpful. >>>> >>>> >>>> -- >>>> Thanks and Regards >>>> Sumit Pandit. >>>> HotWaxMedia, Inc >>>> http://www.hotwaxmedia.com >>>> >>>> On Sep 29, 2008, at 4:36 PM, jaki wrote: >>>> >>>>> >>>>> How do you display the attribues added for a product on that >>>>> products page in >>>>> the ecommerce app? >>>>> -- >>>>> View this message in context: >>>>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19721812.html >>>>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>>>> >>>> >>>> >>>> >>> >>> -- >>> View this message in context: >>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19722087.html >>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>> >> >> >> > > -- > View this message in context: http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19723206.html > Sent from the OFBiz - User mailing list archive at Nabble.com. > |
Administrator
|
And If you only need to put static informations about your composite product, then simply put them in the long description (content
menu in product, not general tab appli) Jacques From: "Sumit Pandit" <[hidden email]> > Jackie, > > I now I got your question, > > The type of product you are talking about is AGGREGATED product. These > are the configurable type product, as you mention in your example. > For this purpose following entities are associated with it : > > 1) ProductConfigItem : Here you have to add your configuration item > (CPU type , memory.......) . > > 2) ProductConfig : Now we have to associate it (configItemId) to the > productId. > > 3) ProductConfigOption : Now in next phase we need to provide the > option to the configItemId and here you can add your all options > (256MB, 512MB, 1024MB....) > > > I think this will help. > > > -- > Thanks and Regards > Sumit Pandit. > HotWaxMedia, Inc > http://www.hotwaxmedia.com > > On Sep 29, 2008, at 6:15 PM, jaki wrote: > >> >> Suppose I have a laptop as a product. I have added attributes such >> as cpu >> type, memory, video adapter, etc. for the product using catalog >> manager. I >> would like for these attributes to be displayed in that products >> page in the >> ecommerce site along with other info like price, weight, etc. which >> usually >> gets displayed for all products. I was hoping for a simpler way to >> do this >> than having to modify the code. >> >> >> Sumit Pandit-3 wrote: >>> >>> Jackie, >>> >>> I got what you want but can you please more elaborate with any >>> example(if possible ) that what kind of attribute you want to >>> display >>> on the ecommerce page. >>> >>> >>> -- >>> Thanks and Regards >>> Sumit Pandit. >>> HotWaxMedia, Inc >>> http://www.hotwaxmedia.com >>> >>> On Sep 29, 2008, at 4:55 PM, jaki wrote: >>> >>>> >>>> I have added a few custom attributes for a product using its >>>> attributes page >>>> in catalog manager. But none of them get displayed in the ecommerce >>>> site for >>>> that product. Is there something you have to set or can this be done >>>> only by >>>> code modification? >>>> >>>> >>>> Sumit Pandit-3 wrote: >>>>> >>>>> Jackie, >>>>> >>>>> Some more information will helpful. >>>>> >>>>> >>>>> -- >>>>> Thanks and Regards >>>>> Sumit Pandit. >>>>> HotWaxMedia, Inc >>>>> http://www.hotwaxmedia.com >>>>> >>>>> On Sep 29, 2008, at 4:36 PM, jaki wrote: >>>>> >>>>>> >>>>>> How do you display the attribues added for a product on that >>>>>> products page in >>>>>> the ecommerce app? >>>>>> -- >>>>>> View this message in context: >>>>>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19721812.html >>>>>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>>>>> >>>>> >>>>> >>>>> >>>> >>>> -- >>>> View this message in context: >>>> http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19722087.html >>>> Sent from the OFBiz - User mailing list archive at Nabble.com. >>>> >>> >>> >>> >> >> -- >> View this message in context: http://www.nabble.com/Displaying-product-attributes-in-ecommerce-site--tp19721812p19723206.html >> Sent from the OFBiz - User mailing list archive at Nabble.com. >> > > |
In reply to this post by Jaki-2
On Mon, 2008-09-29 at 05:45 -0700, jaki wrote:
> Suppose I have a laptop as a product. I have added attributes such as > cpu > type, memory, video adapter, etc. for the product using catalog > manager. I > would like for these attributes to be displayed in that products page > in the > ecommerce site along with other info like price, weight, etc. which > usually > gets displayed for all products. I was hoping for a simpler way to do > this > than having to modify the code. If you don't want to deal with aggregated products and production runs, but only to visualize some info, you may use also product features. For an example of this, take a look at productFeatureType SIZE and how it is visualized in product page. Bilgin |
Free forum by Nabble | Edit this page |