Results 1 to 4 of 4
  1. #1

    Default adding specials as featured, doesn't show special price

    When I try to add a product that I have listed as Special, to Featured, it does not show the special discounted price under the featured category.

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: adding specials as featured, doesn't show special price

    Is the Special Active? As in is there a GREEN dot on the Special?

    Do you see the Special Price on the Product _info page?

    What version Zen Cart?

    What add-ons?

    Is this happening just in your template or also in the Classic Template?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Aug 2008
    Posts
    138
    Plugin Contributions
    0

    Default Re: adding specials as featured, doesn't show special price

    I have the oposite problem... I would really like to NOT show the specials-price on the featured products...

    Any way to do this?

  4. #4
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: adding specials as featured, doesn't show special price

    You would have to customize the select statement to exclude files that are in the specials table ...

    You can customize the featured_products.php module using your templates and overrides by changing the two SELECT statements to read:
    Code:
      $featured_products_query = "select distinct p.products_id, p.products_image, pd.products_name, p.master_categories_id
                               from (" . TABLE_PRODUCTS . " p
                               left join " . TABLE_FEATURED . " f on p.products_id = f.products_id
                               left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id )
                               where p.products_id = f.products_id
                               and p.products_id = pd.products_id
                               and p.products_status = 1 and f.status = 1
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'" . "
                               and p.products_id not in (select products_id from " . TABLE_SPECIALS . ")";
    And the other:
    Code:
        $featured_products_query = "select distinct p.products_id, p.products_image, pd.products_name, p.master_categories_id
                                    from (" . TABLE_PRODUCTS . " p
                                    left join " . TABLE_FEATURED . " f on p.products_id = f.products_id
                                    left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id)
                                    where p.products_id = f.products_id
                                    and p.products_id = pd.products_id
                                    and p.products_status = 1 and f.status = 1
                                    and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                                    and p.products_id in (" . $list_of_products . ")" . "
                                    and p.products_id not in (select products_id from " . TABLE_SPECIALS . ")";
    I think I have that right ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. Replies: 2
    Last Post: 28 Dec 2013, 10:43 PM
  2. Replies: 1
    Last Post: 26 Sep 2013, 08:07 PM
  3. Show special price info in shopping cart (instead only the final price)?
    By Cindy2010 in forum Setting Up Specials and SaleMaker
    Replies: 1
    Last Post: 19 Jan 2011, 02:06 AM
  4. Is this possible? Specials-show price/products-no price
    By enigma666666 in forum General Questions
    Replies: 9
    Last Post: 13 May 2010, 08:57 AM
  5. Adding featured/specials/
    By JansenD in forum General Questions
    Replies: 10
    Last Post: 1 Jun 2008, 03:39 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR