Jump to content

cyjambo

Members
  • Posts

    22
  • Joined

  • Last visited

Recent Profile Visitors

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

cyjambo's Achievements

Newbie

Newbie (1/14)

5

Reputation

  1. Thanks a lot Ixus, this worked for me (.user.ini in public_html dir) with Siteground hosting.
  2. Hi, I just had the same issue, glad I found this thread. I had to look in ps_stock_available table instead of ps_product table. Now everything is working as it should. Thanks!
  3. Hi, Check out this thread: http://www.prestashop.com/forums/topic/230706-solvedhow-could-i-clone-the-bankwire-module/ It helped me solve the issue.
  4. Hi, I would also need this. Is it possible in any way? If not, I guess I have to start from scratch...
  5. Hi everyone, I also have this same problem. On top of this if I am logged in as a customer and click on "Accept terms and conditions" I get taken straight to the Order Summary page instead of being able to choose payment methods first (it is impossible to choose bankwire because the page redirects as soon as i tick the box "Terms and conditions"). Another issue I have is that when I enable PayPal module the "voucher" part of the shopping cart disappears. It flashes for half a second and then disappears. UPDATE: I don't know what I have done but it now all of a sudden seems to work. I think I changed back to the default theme and then again back to the one I am using. Maybe it was a caching issue, not sure.
  6. Hi patuga, I had the exact same problem after an upgrade and it seems like the new columns are not inserted during upgrade (I have updated my shop from 1.4.4.1 to 1.5.3.1. The solution is either to manually add the columns to the table (you can find the colum details in /modules/paypal/upgrade/install-3.0.php) or do the following: 1. Uninstall Paypal module 2. Rename "ps_paypal_order" table in the DB 3. Install Paypal module (this will create a new "ps_paypal_order" with the missing columns) 4. copy the data from the backed up old "ps_paypal_order" table to the new "ps_paypal_order" table. 5. Configure Paypal module again I hope this info helps!
  7. Hi everyone, I cannot seem to be able to find any information about this at all. So I am asking it here, maybe someone knows the answer. There is a default mobile theme in prestashop 1.5. I have 1.5.3.1 and it works perfectly. The only thing I cannot find is the language and currency block. Is it possible to somehow add these to the mobile version of the theme? I have looked in Module positions but I cannot see a way to do it. Has anyone done it before? Could you share it please? Or is it not possible at the moment? Thanks a lot and keep up the good work!
  8. If anyone is having this problem, check out the fix here: http://forge.prestashop.com/browse/PSCFV-8399
  9. Ok, I figured it out. If you want to make this work for guest checkout then you need to add this code: if (Tools::getValue('is_new_customer', 1) && Configuration::get('PS_GUEST_CHECKOUT_ENABLED')) { // Email confirmation if (Tools::getValue('email') != Tools::getValue('email_confirm')) $this->errors[] = Tools::displayError('Both email do not match'); // Password confirmation if (Tools::getValue('passwd') != Tools::getValue('passwd_confirm')) $this->errors[] = Tools::displayError('Both passwords do not match'); } instead of just: // Email confirmation if (Tools::getValue('email') != Tools::getValue('email_confirm')) $this->errors[] = Tools::displayError('Both email do not match'); // Password confirmation if (Tools::getValue('passwd') != Tools::getValue('passwd_confirm')) $this->errors[] = Tools::displayError('Both passwords do not match'); This seem to work fine (not sure if it is the correct way to do it, so please test everything before goin live). I hope this helps someone!
  10. Hi viger, Thanks a lot for the help with this. It works fine with normal checkout when you are logged in, but it doesn't work with guest checkout. It gives the errors Both email do not match Both passwords do not match when pressing save after filling out the delivery address. Of course it is because the guest check-out does not have the password field and only 1 email field. Do you know how to change your code so it does not take into consideration when guest-checkout is used? I am using 1.5.3.1 btw. Thanks a lot!
  11. Hi aany, I would like to have this module please if it is not a problem. Thanks a lot! Jambo
×
×
  • Create New...