Jump to content

NoroHadzi

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Location
    Zvolen SVK
  • Activity
    Freelancer

NoroHadzi's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Conversation Starter Rare
  • Dedicated Rare
  • One Year In Rare
  • Week One Done Rare

Recent Badges

1

Reputation

  1. Hello, Thank you for module. What i found out, this part of smarty.config.inc.php will slow down loading speed of prestashop a lot: $smarty->caching = false; if (Configuration::get('PS_SMARTY_CACHING_TYPE') == 'mysql') { include(_PS_CLASS_DIR_.'/SmartyCacheResourceMysql.php'); $smarty->caching_type = 'mysql'; Is this needed to avoid malwares? Thank you
  2. I think I solved this by adding ?123 at end of image URL. Can somebody tell me if this is ok (for caching, SEO) ? Thanks
  3. Hello, I regenerated size of around 10000 images to make it smaller. My question is, is there a way to force user to download new images (not from user cache)? Becouse for example, If i dont do force reset cache in my browser, I still see old size of images. Thank you if anybody can help
  4. Solved (maybe will help somebody else): My problem was in product indexation, just rebuild index.
  5. Hello, I have bug in PS v. 1.6.1.24... My default pagination is set to show 24 products on page, it works in product list, prices drops or best-sales, search results and everywhere else except products from XXXX manufacturer page. It only shows for example 10 products, however I see: Showing 1 - 24 from 672 products... Does anybody else having this issue and found a solution? Thank you and have a nice day!
  6. Hello, Im using original module productscategory on prestashop 1.6. I want to show 6 products, so i changed this line: $category_products = $category->getProducts($this->context->language->id, 1, 6); /* 100 products max. */ Problem is, in some products I see only 5 products. I think the problem is becouse of deleting current product from the list... (when I delete this lines of code, i see in each product the right number - 6 products, but one is the same as current product): // Remove current product from the list if (is_array($category_products) && count($category_products)) { foreach ($category_products as $key => $category_product) { if ($category_product['id_product'] == $id_product) { unset($category_products[$key]); break; } } Does anybody have modification that works for selected number of products and not showing current product in list? Thanks
  7. Only solution I found is to delete the carrier and make new one (with same name and so on...) - but maybe there is also solution in database (but I dont have access from my client).
  8. Hello, Im using Prestashop 1.6.1.16. I have problem with setting up shipping price range. As you can see on screenshot i set up values 79.990000 - 12000.000000. If I change it to for example: 80.000000 - 12000.000000 it will save and everything is ok, however, when i want to comeback to settings i had sometime before (for example like on screenshot 79.990000 - 12000.000000), it will show OK Saved, but It doesnt work. It will stay as before. I tried it on Safari, Firefox and Chrome... So I cant use numbers I had sometime before. Anybody can help? Maybe I can change it inside database? Thank you very much!
  9. Hello, Im using PrestaShop™ 1.4.8.2 (15288) on my shop When I try to send product to friend by original sendtofriend module, its working fine. After I login as customer to my shop, I get Error sending mail. I tried also module from final version of prestashop 1.4 - still not working. Any Ideas ? Thanks
×
×
  • Create New...