Jump to content

Nican

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • First Name
    Niccolo
  • Last Name
    Angeli

Nican's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. this is interesting, not su This module doesn't exactly solve your issue, but it could be helpful http://addons.prestashop.com/en/pricing-promotion-prestashop-modules/19798-non-cumulative-cart-rules-with-other-discounts.html
  2. Hello, I have a product category which I have assigned free shipping (using cart rules) Everything is fine if I purchase just some products from this category, but as soon as I add a product from a differet category, the shipping stays free, instead that calculating shipping fees for the new products I tried a workaround not using cart rules, assigning a free courier to those products I want to ship for free, but still when I add to my cart some products from a different category, the shipping stays free, meaning that prestashop seems not to able to assign different couriers to different products in the cart, it just takes the courier of the first product (if that product has just one product disposable) and it uses it for all the other products Anyone has any idea on how to solve this? Thanks!
  3. I am having the same issue here, but in my case it's more complex. Default 10% discount and free shipping when the customer spends more than 100 € Product A (150 €) : I want to exclude this product from all discounts Product B: I want to give free shipping for this product Cart example 1: Product A + another product = Error - the 10% discount is been applied to the grand total (not excluding product A) Cart example 2: Product B + Another product = Error - the free shipping is assigned to the whole order, not just to product B I have played around with cart rules for a while, excluding product A cart rules from all the others etc... but nothing seem to work
  4. Well... I just realized that I misunderstood the logic of the cart rules! To do what I want I just need to change the 2 rules in: 1 - orders above 100 € - 10% discount and free shipping 2 - orders above 150 € - 5% discount and free shipping and enable them to be combined together :-)
  5. Hello, I have these 2 cart rules: 1 - orders above 100 € - 10% discount and free shipping 2 - orders above 150 € - 15% discount and free shipping after setting them up I noticed that they were being combined in the final total (both where applied if the cart total was above 150 €) So I realized that there was an option to avoid them to be combined... but when I set that only rule N° 1 is getting applied, both when the cart total is above 100 € and 150 € rule N° 2 is never being applied am I missing something here or it's a just something that cannot be done? Thank you!
  6. Hello, after upgrading from 1.4 to 1.6.1.1 i noticed that the "import" feature redirects to a blank screen I have googled this error but I can't find any solution, I didi check my php.ini memory limit and it is set to 168MB, so I don't think that's the cause I also tried to overwrite all the files with new ones extracted form a fresh Prestashop 1.6.1.1 download, but nothing changed Anyone has an idea why this could be happening? The import feature is vital to me as I have to import hundreds of products! Thanks Nic
  7. Hello, I have upgraded a shop from v 1.4 to v 1.6.1.1 after that I used both the "move images" features and "regenerate thumbnails" features all quite good, some images where missing but most of them where there Then I worked on the new shop for some days, today I used again the "regenerate thumbnails" feature, to see if the missing images would be showed again but the result is that ALL my product images are not being showed now! Obviously I cleared immediately my browser cache (I have no cache activated for the shop) but this didn't solve the issue when I inspect the code I can see that images url are similar to http://nican.me/shop/100-small_default/eclectica.jpg http://nican.me/shop/125-home_default/il-mistero-dei-cerchi-nel-grano.jpg ... not sure if this is correct as it's the first time I work on Prestashop http://nican.me/shop/ is the base url of this shop for now Looking closely at the .htaccess file I also see that there are redirect for the images there, the .htaccess is enabled and working (friendly URLs are working normally) # Images RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] I can't figure out what happened, so any help will be greatly appreciated! Thanks
  8. Hello Vekia, no I don't My URL do have Ids, eg. category URL: http://nican.me/shop/17-e-books product URL: http://nican.me/shop/home/171-giorgio-gaber-su-re-nudo-pdf-video.html I have friendly URL parameter activated, I attach the friendly URL configuration screen I am also thinking is this could be due to the .htaccess file (after the upgrade I noticed that the .htaccess in the upgraded shop is different from the old one, for sure the old one had been customized by the previous webmaster) I attach a zip file with both of them in case anyone wants to take a look htaccess.zip Thanks, Update: I have tried to disable both the friendly URLs and the .htacces file, but this doesn't solve my issue
  9. Hello everybody, I upgraded my shop from 1.4.1.1 to 1.6.1.0 Everything seemed to be ok until I noticed that when I click on any URL in the SEO&URLs section in the backoffice I get a blank page with this error Cannot scan "override" directory I am absolutely a novice with Prestashop and I couldn't find anything googling this error, so here I am asking support to the community :-) Thanks!
×
×
  • Create New...