Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2011
    Posts
    11
    Plugin Contributions
    0

    Default Make products "view only"

    I have a whole series of products that I want to list in the categories with a preview and price, but I don't want them be able to order. In other words I want them to see the product, but have them be sent to a one-page order form instead of the regular shopping cart.

    Any suggestions?

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

    Default Re: Make products "view only"

    If you wanted to prevent Products in master_categories_id 10 from being added to cart, you could customize the function_general.php and add the code in RED:
    Code:
    // Switch buy now button based on call for price sold out etc.
      function zen_get_buy_now_button($product_id, $link, $additional_link = false) {
        global $db;
    
    // show case only superceeds all other settings
        if (STORE_STATUS != '0') {
          return '<a href="' . zen_href_link(FILENAME_CONTACT_US) . '">' .  TEXT_SHOWCASE_ONLY . '</a>';
        }
    
    // bof: no add to cart for Products in master_categories_id 10
      $chk_cat = zen_products_lookup($product_id, 'master_categories_id');
      if ($chk_cat == 10) {
        return 'Product unavailable';
      }
    // eof: no add to cart for Products in master_categories_id 10
    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: 3
    Last Post: 3 Jul 2013, 08:51 PM
  2. can i have products of types "Purchase" and "View only"...need both
    By aniketanyee in forum Customization from the Admin
    Replies: 2
    Last Post: 24 Nov 2012, 11:06 AM
  3. Replies: 1
    Last Post: 10 Aug 2011, 02:07 AM
  4. View "All Products" and "New Products" in columns?
    By cchan in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 24 Feb 2011, 01:58 AM
  5. Replies: 0
    Last Post: 19 May 2007, 11:50 AM

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