Commerce Server General - arranging products on a page

This is Interesting: Free IT Magazines  
Home > Archive > Commerce Server General > January 2005 > arranging products on a page





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author arranging products on a page
jj_in_atlanta

2005-01-12, 5:53 pm

I'm very new to CS, and am beginning to plan for a commerce site.
The site will have several sections which will each have several products on
their main page (the sections will be departments and organizations) The
user will also be able to view a list of all products on those sections, but
we want to present them with a featured product list initially when they
choose a section.
What would be the best way to accomplish that within Commerce server? I
haven't yet seen a way of creating custom lists(for lack of a better word)
where I could define each of these section-pages and what products would be
on them (in order)

Thanks.

Vinayak Tadas[MSFT]

2005-01-12, 8:47 pm

One thing you can do
1. Create a property definiiton name "FeaturedProduct" and datatype boolean
2. Add it to all the product definitions
3. Set the value of FeaturedProduct to 1 for all the products you want to
display as featured products
4. When displaying the featured products on the site perform a search on
the catalog and set the sqlwhereclause to "FeaturedProduct=1"
This will return the list of all the featured products which you can then
display on the site
--------------------
Thread-Topic: arranging products on a page
thread-index: AcT4/NUBsvqDrmifQJmfJ6oHc5ZCJg==
X-WBNR-Posting-Host: 64.236.240.190
From: "=?Utf-8?B?ampfaW5fYXRsYW50YQ==?=" <jj in atlanta@yahoo.com>
Subject: arranging products on a page
Date: Wed, 12 Jan 2005 15:17:06 -0800
Lines: 13
Message-ID: <749192F5-D7CD-42FA-ABAE-D1414A6DA527@microsoft.com>
MIME-Version: 1.0
Content-Type: text/plain;
charset="Utf-8"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Content-Class: urn:content-classes:message
Importance: normal
Priority: normal
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
Newsgroups: microsoft.public.commerceserver.general
NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
Path:
cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGXA0
3.phx.gbl
Xref: cpmsftngxa10.phx.gbl microsoft.public.commerceserver.general:15428
X-Tomcat-NG: microsoft.public.commerceserver.general

I'm very new to CS, and am beginning to plan for a commerce site.
The site will have several sections which will each have several products
on
their main page (the sections will be departments and organizations) The
user will also be able to view a list of all products on those sections,
but
we want to present them with a featured product list initially when they
choose a section.
What would be the best way to accomplish that within Commerce server? I
haven't yet seen a way of creating custom lists(for lack of a better word)
where I could define each of these section-pages and what products would be
on them (in order)

Thanks.



Thanks
Vinayak Tadas
Microsoft
http://blogs.msdn.com/vinayakt

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2002 Microsoft Corporation. All rights
reserved.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
Get Secure! For more info visit http://www.microsoft.com/security. Please
reply to the newsgroups only. Thanks

jj_in_atlanta

2005-01-13, 5:51 pm

If I take that approach, I'd need to create a separate property for each of
the section homepages - ex:
FeaturedOnHomePage
FeaturedOnSpecialsPage
FeaturedOnMensPage
etc.
Plus, I have no way of Arranging them - we will be having a "primary"
featured product, plus 4 other features, on each of the section homepages.

I had considered making a new section category "SectionHomePages", and that
having property "productList" which would be a semi-colon separated list of
SKU's - but the system wants to list those categories along with regular
department-like categories.

Any other suggestions?
Thanks


""Vinayak Tadas[MSFT]"" wrote:

> One thing you can do
> 1. Create a property definiiton name "FeaturedProduct" and datatype boolean
> 2. Add it to all the product definitions
> 3. Set the value of FeaturedProduct to 1 for all the products you want to
> display as featured products
> 4. When displaying the featured products on the site perform a search on
> the catalog and set the sqlwhereclause to "FeaturedProduct=1"
> This will return the list of all the featured products which you can then
> display on the site
> --------------------
> Thread-Topic: arranging products on a page
> thread-index: AcT4/NUBsvqDrmifQJmfJ6oHc5ZCJg==
> X-WBNR-Posting-Host: 64.236.240.190
> From: "=?Utf-8?B?ampfaW5fYXRsYW50YQ==?=" <jj in atlanta@yahoo.com>
> Subject: arranging products on a page
> Date: Wed, 12 Jan 2005 15:17:06 -0800
> Lines: 13
> Message-ID: <749192F5-D7CD-42FA-ABAE-D1414A6DA527@microsoft.com>
> MIME-Version: 1.0
> Content-Type: text/plain;
> charset="Utf-8"
> Content-Transfer-Encoding: 7bit
> X-Newsreader: Microsoft CDO for Windows 2000
> Content-Class: urn:content-classes:message
> Importance: normal
> Priority: normal
> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
> Newsgroups: microsoft.public.commerceserver.general
> NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.1.29
> Path:
> cpmsftngxa10.phx.gbl!TK2MSFTFEED01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGXA0
> 3.phx.gbl
> Xref: cpmsftngxa10.phx.gbl microsoft.public.commerceserver.general:15428
> X-Tomcat-NG: microsoft.public.commerceserver.general
>
> I'm very new to CS, and am beginning to plan for a commerce site.
> The site will have several sections which will each have several products
> on
> their main page (the sections will be departments and organizations) The
> user will also be able to view a list of all products on those sections,
> but
> we want to present them with a featured product list initially when they
> choose a section.
> What would be the best way to accomplish that within Commerce server? I
> haven't yet seen a way of creating custom lists(for lack of a better word)
> where I could define each of these section-pages and what products would be
> on them (in order)
>
> Thanks.
>
>
>
> Thanks
> Vinayak Tadas
> Microsoft
> http://blogs.msdn.com/vinayakt
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
> You assume all risk for your use. © 2002 Microsoft Corporation. All rights
> reserved.
> Use of included script samples are subject to the terms specified at
> http://www.microsoft.com/info/cpyright.htm
> Get Secure! For more info visit http://www.microsoft.com/security. Please
> reply to the newsgroups only

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com