SKUs Not Showing Up

General ShopSite user discussion

SKUs Not Showing Up

Postby Paul Schuster » Thu Jul 27, 2006 10:54 am

Has anybody had difficulty with getting SKU numbers to display from a custom
template? I know that by default they dont show up, but in the Edit Product
Layout window I have the Check here to display the SKU of this product
toggled on. I have messed with the product template as well trying to add
SKU tags but without any progress. Even after doing a regen.

Paul
Paul Schuster
 

Re: SKUs Not Showing Up

Postby Paul Schuster » Thu Jul 27, 2006 11:00 am

Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a way to
make all the product SKUs show up on template driven pages other than the
checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the Edit
Product Layout window I have the Check here to display the SKU of this
product toggled on. I have messed with the product template as well trying
to add SKU tags but without any progress. Even after doing a regen.

Paul
Paul Schuster
 

Re: SKUs Not Showing Up

Postby Jim » Thu Jul 27, 2006 12:36 pm

Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF
statment that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a way to
make all the product SKUs show up on template driven pages other than the
checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the Edit
Product Layout window I have the Check here to display the SKU of this
product toggled on. I have messed with the product template as well trying
to add SKU tags but without any progress. Even after doing a regen.

Paul


Jim
 

Re: SKUs Not Showing Up

Postby Paul Schuster » Fri Jul 28, 2006 7:58 am

Oh. It looks like I DO have it in an IF statement! Heres the products
section of the template as I have it now:

[-- DEFINE PRODUCT --]
[-- VAR.define "product" --]
[-- INCLUDE elite_001_pr_vars.sst PROCESS --]

[-- INCLUDE core_001_se_basic_product.sst PROCESS --]
[-- IF PRODUCT.DisplaySKU --]
<br>
[-- PRODUCT.SKUSize Begin --][-- PRODUCT.SKUStyle Begin --]
[-- PRODUCT.SKU --]
[-- PRODUCT.SKUStyle End --][-- PRODUCT.SKUSize End --]
[-- END_IF --]

[-- END_DEFINE PRODUCT --]

What do you think Jim?

"Jim" <jstavast@xmission.com> wrote in message
news:eab4ju$1a0$1@eval.shopsite.com...
Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF statment
that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a way
to make all the product SKUs show up on template driven pages other than
the checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the
Edit Product Layout window I have the Check here to display the SKU of
this product toggled on. I have messed with the product template as well
trying to add SKU tags but without any progress. Even after doing a
regen.

Paul

Paul Schuster
 

Re: SKUs Not Showing Up

Postby Jim » Fri Jul 28, 2006 8:25 am

The include file core_001_se_basic_product.sst that you have just above
your [-- IF PRODUCT.DisplaySKU --] already displays the SKU if the
checkbox is checked which is what you are checking with [-- IF
PRODUCT.DisplaySKU --]. So if the box is checked then you should see
the SKU displayed 2 times with this code.

If you always want the SKU to display and you want to use the include
file core_001_se_basic_product.sst for the rest of your product layout
then make a copy of the core_001_se_basic_product.sst using the Copy
ShopSite template button and modify the the section of the template that
displays the SKU to only display the sku and not do the [-- IF
PRODUCT.DisplaySKU --] check.

Jim




Paul Schuster wrote:
Oh. It looks like I DO have it in an IF statement! Heres the products
section of the template as I have it now:

[-- DEFINE PRODUCT --]
[-- VAR.define "product" --]
[-- INCLUDE elite_001_pr_vars.sst PROCESS --]

[-- INCLUDE core_001_se_basic_product.sst PROCESS --]
[-- IF PRODUCT.DisplaySKU --]
br
[-- PRODUCT.SKUSize Begin --][-- PRODUCT.SKUStyle Begin --]
[-- PRODUCT.SKU --]
[-- PRODUCT.SKUStyle End --][-- PRODUCT.SKUSize End --]
[-- END_IF --]

[-- END_DEFINE PRODUCT --]

What do you think Jim?

"Jim" <jstavast@xmission.com> wrote in message
news:eab4ju$1a0$1@eval.shopsite.com...
Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF statment
that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a way
to make all the product SKUs show up on template driven pages other than
the checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the
Edit Product Layout window I have the Check here to display the SKU of
this product toggled on. I have messed with the product template as well
trying to add SKU tags but without any progress. Even after doing a
regen.

Paul

Jim
 

Re: SKUs Not Showing Up

Postby Paul Schuster » Fri Jul 28, 2006 8:53 am

So after selecting Copy Shopsite Template on the Custom Templates page, I
just click on Edit Template, then delete the [--IF PRODUCT.DisplaySKU --]
tag?

"Jim" <jstavast@xmission.com> wrote in message
news:eada8f$22v$1@eval.shopsite.com...
The include file core_001_se_basic_product.sst that you have just above
your [-- IF PRODUCT.DisplaySKU --] already displays the SKU if the
checkbox is checked which is what you are checking with [-- IF
PRODUCT.DisplaySKU --]. So if the box is checked then you should see the
SKU displayed 2 times with this code.

If you always want the SKU to display and you want to use the include file
core_001_se_basic_product.sst for the rest of your product layout then
make a copy of the core_001_se_basic_product.sst using the Copy ShopSite
template button and modify the the section of the template that displays
the SKU to only display the sku and not do the [-- IF
PRODUCT.DisplaySKU --] check.

Jim




Paul Schuster wrote:
Oh. It looks like I DO have it in an IF statement! Heres the products
section of the template as I have it now:

[-- DEFINE PRODUCT --]
[-- VAR.define "product" --]
[-- INCLUDE elite_001_pr_vars.sst PROCESS --]

[-- INCLUDE core_001_se_basic_product.sst PROCESS --]
[-- IF PRODUCT.DisplaySKU --]
br
[-- PRODUCT.SKUSize Begin --][-- PRODUCT.SKUStyle Begin --]
[-- PRODUCT.SKU --]
[-- PRODUCT.SKUStyle End --][-- PRODUCT.SKUSize End --]
[-- END_IF --]

[-- END_DEFINE PRODUCT --]

What do you think Jim?

"Jim" <jstavast@xmission.com> wrote in message
news:eab4ju$1a0$1@eval.shopsite.com...
Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF
statment that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a
way to make all the product SKUs show up on template driven pages other
than the checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the
Edit Product Layout window I have the Check here to display the SKU
of this product toggled on. I have messed with the product template as
well trying to add SKU tags but without any progress. Even after doing
a regen.

Paul

Paul Schuster
 

Re: SKUs Not Showing Up

Postby Jim » Fri Jul 28, 2006 9:30 am

You will have to delete the [--IF PRODUCT.DisplaySKU --] and
corresponding [-- END_IF --]
You will want to change then name of the include file in your product
template to be whatever you named the new file, too.

Jim

Paul Schuster wrote:
So after selecting Copy Shopsite Template on the Custom Templates page, I
just click on Edit Template, then delete the [--IF PRODUCT.DisplaySKU --]
tag?

"Jim" <jstavast@xmission.com> wrote in message
news:eada8f$22v$1@eval.shopsite.com...
The include file core_001_se_basic_product.sst that you have just above
your [-- IF PRODUCT.DisplaySKU --] already displays the SKU if the
checkbox is checked which is what you are checking with [-- IF
PRODUCT.DisplaySKU --]. So if the box is checked then you should see the
SKU displayed 2 times with this code.

If you always want the SKU to display and you want to use the include file
core_001_se_basic_product.sst for the rest of your product layout then
make a copy of the core_001_se_basic_product.sst using the Copy ShopSite
template button and modify the the section of the template that displays
the SKU to only display the sku and not do the [-- IF
PRODUCT.DisplaySKU --] check.

Jim




Paul Schuster wrote:
Oh. It looks like I DO have it in an IF statement! Heres the products
section of the template as I have it now:

[-- DEFINE PRODUCT --]
[-- VAR.define "product" --]
[-- INCLUDE elite_001_pr_vars.sst PROCESS --]

[-- INCLUDE core_001_se_basic_product.sst PROCESS --]
[-- IF PRODUCT.DisplaySKU --]
br
[-- PRODUCT.SKUSize Begin --][-- PRODUCT.SKUStyle Begin --]
[-- PRODUCT.SKU --]
[-- PRODUCT.SKUStyle End --][-- PRODUCT.SKUSize End --]
[-- END_IF --]

[-- END_DEFINE PRODUCT --]

What do you think Jim?

"Jim" <jstavast@xmission.com> wrote in message
news:eab4ju$1a0$1@eval.shopsite.com...
Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF
statment that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a
way to make all the product SKUs show up on template driven pages other
than the checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from a
custom template? I know that by default they dont show up, but in the
Edit Product Layout window I have the Check here to display the SKU
of this product toggled on. I have messed with the product template as
well trying to add SKU tags but without any progress. Even after doing
a regen.

Paul


Jim
 

Re: SKUs Not Showing Up

Postby Paul Schuster » Fri Jul 28, 2006 10:01 am

Jim, thanks again. I guess I have to go to every product and check the
Display SKU box. Lots of them werent checked. Thanks for clearing up my
template problems though. I would have had two product codes showing up once
I checked all those boxes.

Paul


"Jim" <jstavast@xmission.com> wrote in message
news:eade2q$43i$1@eval.shopsite.com...
You will have to delete the [--IF PRODUCT.DisplaySKU --] and corresponding
[-- END_IF --]
You will want to change then name of the include file in your product
template to be whatever you named the new file, too.

Jim

Paul Schuster wrote:
So after selecting Copy Shopsite Template on the Custom Templates page, I
just click on Edit Template, then delete the [--IF PRODUCT.DisplaySKU --]
tag?

"Jim" <jstavast@xmission.com> wrote in message
news:eada8f$22v$1@eval.shopsite.com...
The include file core_001_se_basic_product.sst that you have just above
your [-- IF PRODUCT.DisplaySKU --] already displays the SKU if the
checkbox is checked which is what you are checking with [-- IF
PRODUCT.DisplaySKU --]. So if the box is checked then you should see
the SKU displayed 2 times with this code.

If you always want the SKU to display and you want to use the include
file core_001_se_basic_product.sst for the rest of your product layout
then make a copy of the core_001_se_basic_product.sst using the Copy
ShopSite template button and modify the the section of the template that
displays the SKU to only display the sku and not do the [-- IF
PRODUCT.DisplaySKU --] check.

Jim




Paul Schuster wrote:
Oh. It looks like I DO have it in an IF statement! Heres the products
section of the template as I have it now:

[-- DEFINE PRODUCT --]
[-- VAR.define "product" --]
[-- INCLUDE elite_001_pr_vars.sst PROCESS --]

[-- INCLUDE core_001_se_basic_product.sst PROCESS --]
[-- IF PRODUCT.DisplaySKU --]
br
[-- PRODUCT.SKUSize Begin --][-- PRODUCT.SKUStyle Begin --]
[-- PRODUCT.SKU --]
[-- PRODUCT.SKUStyle End --][-- PRODUCT.SKUSize End --]
[-- END_IF --]

[-- END_DEFINE PRODUCT --]

What do you think Jim?

"Jim" <jstavast@xmission.com> wrote in message
news:eab4ju$1a0$1@eval.shopsite.com...
Have you tried [-- PRODUCT.SKU --] ? Just don't put it in an IF
statment that checks to see if it should be displayed or not.

Jim

Jim

Paul Schuster wrote:
Let me restate what I just posted: The Edit Product Layout toggle for
displaying the SKU may work for an individual product, but is there a
way to make all the product SKUs show up on template driven pages
other than the checkout? (Hope thats clearer than mud)

"Paul Schuster" <pdschuster@yahoo.com> wrote in message
news:eaaul8$thr$1@eval.shopsite.com...
Has anybody had difficulty with getting SKU numbers to display from
a custom template? I know that by default they dont show up, but in
the Edit Product Layout window I have the Check here to display the
SKU of this product toggled on. I have messed with the product
template as well trying to add SKU tags but without any progress.
Even after doing a regen.

Paul

Paul Schuster
 


Return to User Forum

Who is online

Users browsing this forum: Bing [Bot] and 117 guests