Jump to content

hiltonroutley

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Activity
    Project Owner

hiltonroutley's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. just to clarify for any others that need help. I'm also making sure with evanburke this is the right way to do it. so in cart.php you go to the part of the code that says public function isVirtualCart() { if (!isset(self::$_isVirtualCart[$this->id])) { $products = $this->getProducts(); if (!sizeof($products)) return false; $list = ''; foreach ($products AS $product) $list .= (int)($product['id_product']).','; $list = rtrim($list, ','); $n = (int)Db::getInstance()->getValue(' SELECT COUNT(`id_product_download`) n FROM `'._DB_PREFIX_.'product_download` WHERE `id_product` IN ('.pSQL($list).') AND `active` = 1'); self::$_isVirtualCart[$this->id] = ($n == sizeof($products)); } return self::$_isVirtualCart[$this->id]; } Then you add "{return false;}" and remove the rest so it should look like this? public function isVirtualCart(){return false;}
  2. Everything seems to run smoothly so Im very very happy. I think everything should still download just fine though. If it doesn't ill post up here after someone does a purchase. Thank you very much evanburke
  3. That's what I want to do. I use that feature but then it doesn't show up because it's a downloadable product. Anyone know how to fix this? PLEASE HELP!
  4. Would really appreciate the help if someone could tell me how to make a shipping charge go with downloadable products. I set up in my shop the "shipping" charge to "Service Charge" so it's important that I get a shipping charge to show up with my downloadable products because my shop does downloadable tickets. Someone please help! www.gofest.ca
  5. How do I get the default view to be list? I went into product-sort.tpl and changed it to this and have had no luck still. Help please! <li id="product_view_list" class="current"></li>
  6. Nope I have not unfortunately. I thought someone would be able to help by now haha guess not.
  7. So in my page www.gofest.ca I have 4 different categories and when I create a category it creates a page for products. I want my "Gallery" category to link up to a cms page that I have set up but I don't know where to edit the links to change this from going to a product page to my gallery. Right now I have a URL redirect that redirects when "Gallery" is clicked but the problem is the button is not highlighted when your on the page because of the redirect. Can someone please tell me how to edit this so I can have this fixed? All help is greatly appreciated. thanks!
×
×
  • Create New...