Jump to content

dirsubmit

Members
  • Posts

    44
  • Joined

  • Last visited

Profile Information

  • Location
    US
  • Activity
    Freelancer

dirsubmit's Achievements

  1. Hi, What part of product-list.tpl did you put that? I've tried several times to do this and it has never worked.. I've tried every suggestion listed in this tread.. and more.. nothing changes no matter what I do! Also what version of PS are you using? If you could please show the code where you added that specifically that would greatly help others. Thanks
  2. Hi everyone, I've had this happen quite a few times now.. the first few times I just thought my buyers are clueless and are making a mistake, but it's happening way too often now! They say that they are trying to purchase something and they are not able to and are told that they need a voucher. I personally have not ever come across that and I've tested my site 100's of times in the past three years. I have no idea how to debug this or replicate it. Any ideas on how or why this could be happening? They're not trying to use a voucher.. they're just trying to go through the checkout process and they can't because they get a message saying they NEED a voucher? Any help would be appreciated! Thanks
  3. Hi Nemo, Yes I am.. but can't really disable it.. the whole site structure is currently based on it... is the Layered navigation overriding the sorting? Thank you!
  4. Nemo, Ok I tried it. when I put die('test') inside where you've suggested the code change.. nothing happens.. so that whole condition isn't getting triggered.. when I put die('test') somewhere else.. in another block or condition.. it works.. dies.. to make things easier here's the code I have.. maybe it's different or something there you might be able to spot by seeing the whole thing! /** * Assign list of products template vars */ public function assignProductList() { $hookExecuted = false; Hook::exec('actionProductListOverride', array( 'nbProducts' => &$this->nbProducts, 'catProducts' => &$this->cat_products, 'hookExecuted' => &$hookExecuted, )); // The hook was not executed, standard working if (!$hookExecuted) { $this->context->smarty->assign('categoryNameComplement', ''); $this->nbProducts = $this->category->getProducts(null, null, null, $this->orderBy, $this->orderWay, true); $this->pagination((int)$this->nbProducts); // Pagination must be call after "getProducts" $this->cat_products = $this->category->getProducts($this->context->language->id, (int)$this->p, (int)$this->n, $this->orderBy, $this->orderWay); die('test'); } // Hook executed, use the override else // Pagination must be call after "getProducts" $this->pagination($this->nbProducts); foreach ($this->cat_products as &$product) { if ($product['id_product_attribute'] && isset($product['product_attribute_minimal_quantity'])) $product['minimal_quantity'] = $product['product_attribute_minimal_quantity']; } $this->context->smarty->assign('nb_products', $this->nbProducts); } /** * Get instance of current category */ public function getCategory() { return $this->category; } } Thanks!
  5. Hi NemoPS, I fixed that problem and put the site back up.. by "any ideas now" I meant.. obviously it is that file being served / used because when I changed the name the site threw an error. So if that is the file being used then how come when I make the modifications you suggested, or any other modification.. clear all files / caches and the products in the categories still come up exactly the same way? Thanks
  6. Just tried it and I get an error.. Fatal error: Class 'Category' not found in /var/www/ .. so any ideas now .. I completely don't get why it would be behaving this way? Thanks!
  7. I haven't tried that.. will try it and let you know.. but if I create an error in category.php the site stops working and I get an error.. so for example if I put a X in the beginning of the file.. I get php error. Thanks.
  8. Hi Vekia, Yes I did Only files there are Cart / Dispacher / Index / Link / Product no category Any other ideas? I'm at a loss.. don't understand why when even when I modify SQL queries or any order by's still no change in the way the products are showing up in the categories. Thanks
  9. HI Guys, No matter what I do and change in /classes/Category.php nothing changes on my front-end. Cache disabled, cleared. $random set true .. even modified the SQL statements and add order by clauses.. no matter what.. the products in the categories come up the same exact way.. is something overriding what I'm doing? Does anybody have any clues as to why and where I should look? Tried all changes from everybody's post here and still no change on the way the products come up. Always in the same order. Using PS V 1.5.6.2 Thanks!
  10. HI Guys, No matter what I do and change in /classes/Category.php nothing changes on my front-end. Cache disabled, cleared. $random set true .. even modified the SQL statements and add order by clauses.. no matter what.. the products in the categories come up the same exact way.. is something overriding what I'm doing? Does anybody have any clues as to why and where I should look? Using PS V 1.5.6.2 Thanks!
  11. Everything is working fine with PayPal US module.. but if somebody tries to purchase something from Europe (which is configured and working) when they go to PayPal, the country sent over to PayPal is US which is incorrect so it creates confusion.. Do we need to also install PayPal Europe to have this properly work or is there a fix so that when the information is sent over to PayPal it reflects the correct country and doesn't just default to US? Thanks!
  12. Hi, What is the difference between between Google Analytics API add on and ganalytics add on ?? Can somebody please explain? Thanks!
  13. I'm using 1.5.6.2 on one of my sites and just tried this.. looks like everything works EXCEPT the categories.. they create a "The page isn't redirecting properly" an indefinite redirect loop.. any ideas on why this is happening to the category pages? URL rewriting is on. Thanks
  14. For anyone else that is having this issue.. Actually none of the suggestions above worked for me and were not accurate. One of the problems could be if you are getting that error is that in the Returns Policy section under "account settings" "any other information" the eBay API does not like anything but plain text there.. no html, no special characters or anything besides numeric and alphanumeric.
  15. Hi, Can you please specify what to look for and verify in the ebay template? I'm using the original template that comes with eBay module 1.6.6. I only added an image there. Thanks
×
×
  • Create New...