Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Posts
    84
    Plugin Contributions
    2

    Default Writing a mod to hide products and could do with a little help !

    Hey Guys,

    I'm currently updating an old mod and would like to hide products from some customers. Everything is in place except I cannot find where to add the code to hide the product after the check.

    I've looked at a couple of mods in the contribution section but they use very different techniques and I'm sure it would be a lot simpler that modding like 15 files ?

    I was thinking about hooking into something like the enable disable function in the store side and just using a simple if statement to disable the product ?

    Any help would be much appreciated !!

  2. #2
    Join Date
    Oct 2010
    Posts
    84
    Plugin Contributions
    2

    Default Re: Writing a mod to hide products and could do with a little help !

    I think I've been a bit vague so I will explain more.

    I want to hide products to wholesale customers. I've modded a contribution here called dual prices to do what I need to do except this and I haven't got a clue about what approach to take ?

    I've basically added a radio button in the new product screen so you can switch on or off and added a db entry hide_retail to the products table.

    Now I want to set to hide the product on the website. I know there's the backbone to hook into available but finding the right approach is another story.

    I was thinking around the lines of
    Code:
    $hide_retail = $db->Execute("select product_hide_retail from " . TABLE_PRODUCTS . " where products_id = '" . (int)$product_id . "'");
    
    if ($hide_retail == 1) {
      hide price
    } else {
      continue as normal
    }
    But where would be the best place to add this or is there a function already responsible for hiding products that I can manipulate ?

    Help please lol

 

 

Similar Threads

  1. New to ZC and could do with a little help please!
    By martin_j in forum Basic Configuration
    Replies: 2
    Last Post: 20 Mar 2014, 12:59 PM
  2. Need Help With Mod I'm Writing on one little piece I'm missing...
    By Mega Moonshine in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 1 Jun 2010, 04:11 PM
  3. Need help with writing UPC mod update for Easy Populate 1.2.5.7b
    By starksark in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 13 May 2010, 02:38 PM
  4. Could use a little help with install
    By taogem in forum Installing on a Windows Server
    Replies: 23
    Last Post: 8 Jun 2008, 05:39 AM
  5. I could use a little help...
    By Metal.Drummer in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 5 Sep 2006, 03:22 AM

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