Jump to content

hipeq

Members
  • Posts

    26
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

hipeq's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. Hello mdekker, I use the official Stripe module... found this on their website https://stripe.com/docs/apple-pay/web#adding-a-button but its not working or me... any ideas? thanks
  2. So here is what I did, although I dont think this is the right way to do it I commented lines 46, 47, 48 and it started working.... I think this may have something to do with MySQL5.7 //$this->_select = 'IFNULL(virtual.products, 0) as products'; //$this->_join = 'LEFT JOIN (SELECT id_attachment, COUNT(*) as products FROM '._DB_PREFIX_.'product_attachment GROUP BY id_attachment) virtual ON a.id_attachment = virtual.id_attachment'; //$this->_use_found_rows = false;
  3. Hello, When I click on Catalog -- Attachments I get the following error in my back office: Bad SQL query You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'virtual ON a.id_attachment = virtual.id_attachment WHERE 1 ORDER ' at line 6 I run on a dedicated IIS server, PHP7 and MySQL 5.7 Everything else runs fine on this setup... Any thoughts? Thank you
  4. Hello, I have tried this fix but unfortunately it has not solved my issue... Any ideas? Thanks,
  5. I have tried to do put this code into override/classes/tax/Taxes.php public static function getProductTaxRate($id_product, $id_address = null, Context $context = null) { if ($context == null) $context = Context::getContext(); $address = Address::initialize($id_address); $groups = Customer::getGroupsStatic((int)($address->id_customer)); $taxratenew = null; foreach ($groups as $g) { if ($g > 4) { //set the group you want here ( '>;' or '=') $taxratenew = 16; //set the tax rate you want here (e.g. "0") [spam-filter] if (!$taxratenew) { $id_tax_rules = (int)Product::getIdTaxRulesGroupByIdProduct($id_product, $context); $tax_manager = TaxManagerFactory::getManager($address, $id_tax_rules); $tax_calculator = $tax_manager->getTaxCalculator(); $taxratenew = $tax_calculator->getTotalRate(); } return $taxratenew; } However, no matter how much I clear cache I can not get it to generate order without tax for a Tax Exempt distributor. Any thoughts? Using Prestashop 1.6.0.14 Thank you,
  6. Hello, when I try to place an order in the backed using recently upgraded prestashop 1.6.0.11 I get the following error: An order has already been placed with this cart. This product cannot be added to the cart. Any ideas on how this can be solved? thank you,
  7. I have the same issue on prestashop 1.6.0.11 Any suggestions? This happens when I place order from backend admin panel. An order has already been placed with this cart. This product cannot be added to the cart.
  8. Hello, I have a dedicated IIS 8.5 server with plenty of ram and fast raid. I have installed Xcache and wincache with prestashop 1.6.0.11. My time to first byte according to Google page speed is at around 0.32 s, which is kinda slow. Any ideas on how I could optimize that? In the settings file Mysql database is called out with a 127.0.0.1. Thanks.
  9. You are not the only one.. I have the same problem.... Just noticed it today and googled it.. arrived here.... Filtering orders by date does nothing for me...
  10. Thank you Roblaus, that worked... Any idea on why this is happening and how this can be permanently fixed? Is this new to Presta 1.6.0.9?
  11. Here is the solution I have found: delete ps_tab and ps_tab_lang and replace them with tables from Prestashop 1.5 fresh install database.. that fixed it...
  12. Here is the solution I have found: delete ps_tab and ps_tab_lang and replace them with tables from Prestashop 1.5 fresh install database.. that fixed it...
  13. No red mark.. I also tried to use an empty Prestashop 1.5 database with my install and that one worked fine.. so it looks like there is something missing or conflicting in the database... what do you think?
×
×
  • Create New...