Zen Cart Logo

featured products help

Locked

Views: 2,950

Results 1 to 13 of 13
This thread is locked. New replies are disabled.
13 May 2008, 3:35 PM
#1
machaneko avatar

machaneko

Zen Follower

Join Date:
Apr 2008
Posts:
174
Plugin Contributions:
0

featured products help

im reposting this to get a better response.

i want a certain few select products to show in the featured products, how do i do this please?

14 May 2008, 3:41 AM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

Go to the Catalog ... Featured Products ... and add those few select products as Featured Products ... and voila! :cool:

14 May 2008, 12:02 PM
#3
machaneko avatar

machaneko

Zen Follower

Join Date:
Apr 2008
Posts:
174
Plugin Contributions:
0

Re: featured products help

will the product remain as part of the entire catalog or will it only show up in teh featured products?

14 May 2008, 2:00 PM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

Featured Products only enable the products to be included in an additional Featured Product Listing, Featured Product Sidebox, Featured Product Centerbox ...

As to the rest of the Catalog, the Featured Products behave in the same manner as a Product that is not marked as a Featured Product ...

14 May 2008, 2:09 PM
#5
machaneko avatar

machaneko

Zen Follower

Join Date:
Apr 2008
Posts:
174
Plugin Contributions:
0

Re: featured products help

ok thank you!

btw do you know anything about moving the add to cart box location?

14 May 2008, 3:29 PM
#6
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

Copy your tpl_product_info_display.php to your templates and overrides directory and then find the section marked off for the Add to Cart button and move it to where you want it ...

14 May 2008, 3:34 PM
#7
machaneko avatar

machaneko

Zen Follower

Join Date:
Apr 2008
Posts:
174
Plugin Contributions:
0

Re: featured products help

already tried that many times, i get syntax errors. and no i did not do it wrong i moved everything accordingly and it still messes up. any other way?

14 May 2008, 3:56 PM
#8
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

What are the exact errors are you seeing?

14 May 2008, 4:01 PM
#9
machaneko avatar

machaneko

Zen Follower

Join Date:
Apr 2008
Posts:
174
Plugin Contributions:
0

Re: featured products help

sorry, while we were talking my boss figured it out. thank you though.

21 Oct 2008, 9:31 PM
#10
pricediscrimination avatar

pricediscrimination

Zen Follower

Join Date:
May 2008
Posts:
401
Plugin Contributions:
0

Re: featured products help

I have some "specials" and some "featured" products.

I have the sideboxes activated for both.

The specials sidebox appears for the main page, any category pages and info pages, but does not appear for the product listing pages.
This is how I want my featured products sidebox to appear, but it always shows on the product listing page. Where can I shut this off?

22 Oct 2008, 2:34 AM
#11
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

By default, Specials sidebox shows on the Product Listings but not on the product _info page ...

Featured sidebox shows everywhere ...

Can you check where, specifically, you do not want to see the Featured sidebox?

An URL for where you are seeing the Featured sidebox and would NOT want to see the Featured sidebox would be of help ... :smile:

22 Oct 2008, 3:31 AM
#12
pricediscrimination avatar

pricediscrimination

Zen Follower

Join Date:
May 2008
Posts:
401
Plugin Contributions:
0

Re: featured products help

Thanks for the reply. I want the featured products sidebox to act the same way the specials sidebox acts. In other words, I want it to show everywhere except for the product_info page.

22 Oct 2008, 4:15 AM
#13
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: featured products help

I was wondering ... as you were saying Product Listing but describing the Product _info behavior ... :eek:

Specials sidebox has a little more code than Featured sidebox, where specials has:

// test if box should display
  $show_specials= false;

  if (isset($_GET['products_id'])) {
    $show_specials= false;
  } else {
    $show_specials= true;
  }

  if ($show_specials == true) {

vs featured that has:

// test if box should display
  $show_featured= true;

  if ($show_featured == true) {

Using your templates and overrides, you can change this so that the two follow the same rules ... just note that on the featured sidebox the code setting the $show_specials needs to be $show_featured to work ...