Jump to content

venereo

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

venereo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. same problem here, Payment accepted appears in the status list, but the status itself it's not updated
  2. Are negative stocks normal? Cause if I have allow order of products out of stock turned on product sotck will became negative. Is this the natural behaver? Thanks! Hugo
  3. This line: @https://github.com/PrestaShop/PrestaShop/blob/1.6/classes/controller/FrontController.php#L893
  4. try my fix above http://www.prestashop.com/forums/topic/327112-show-all-feature-on-page-does-not-work/?do=findComment&comment=1656144
  5. I don't know if there's another way but the way I do it is to split that in two operations: the normal products import, with all fields that you need, then the combinations import to the previously imported products
  6. check my above posts, the buggy line is this one from FrontController.php: if ((int)Tools::getValue('n') > 0 && in_array((int)Tools::getValue('n'), $nArray)) https://github.com/PrestaShop/PrestaShop/blob/1.6/classes/controller/FrontController.php#L893 edit: at github it's already fixed
  7. It seems it's still using the value from the cookie and not respecting the n parameter passed.... maybe here? classes/controller/FrontController.php: // Retrieve the current number of products per page (either the default, the GET parameter or the one in the cookie) $this->n = $default_products_per_page; if ((int)Tools::getValue('n') > 0 && in_array((int)Tools::getValue('n'), $nArray)) $this->n = (int)Tools::getValue('n'); elseif (isset($this->context->cookie->nb_item_per_page) && in_array($this->context->cookie->nb_item_per_page, $nArray)) $this->n = (int)$this->context->cookie->nb_item_per_page; edit: $nArray = array($default_products_per_page, $default_products_per_page * 2, $default_products_per_page * 5); $this->n being in $nArray is pure luck, so changing if ((int)Tools::getValue('n') > 0 && in_array((int)Tools::getValue('n'), $nArray)) to if ((int)Tools::getValue('n') > 0 || in_array((int)Tools::getValue('n'), $nArray)) fixes the problem, but i'm not sure if it's the perfect solution.
  8. default theme, pagination.tpl: <form method="get" action="http://troikos.pt/25-last-kings" class="showall"> <div> <button class="btn btn-default button exclusive-medium" type="submit"> <span>Show all</span> </button> <input type="hidden" value="25" name="id_category"> <input value="28" class="hidden" id="nb_item" name="n"> </div> </form> after submit: http://troikos.pt/25-last-kings?id_category=25&n=28 but still only 12 products showing
  9. locatefile module/paypal/api/paypal_connect.php change line 85 to @curl_setopt($ch, CURLOPT_VERBOSE, false); []
  10. locate file module/paypal/api/paypal_connect.php change line 85 to @curl_setopt($ch, CURLOPT_VERBOSE, false); it worked here []
  11. locatefile module/paypal/api/paypal_connect.php change line 85 to @curl_setopt($ch, CURLOPT_VERBOSE, false); []
  12. ++++++1111111 !!!!!!! THE ONLY WORKING ANSWER IN THE FUCK*** WEB THANKS!!!!!!
×
×
  • Create New...