Jump to content

MichałM

Members
  • Posts

    101
  • Joined

  • Last visited

1 Follower

Profile Information

  • Location
    Poland
  • Activity
    Freelancer

Recent Profile Visitors

4,771,939 profile views

MichałM's Achievements

  1. Try to open classes/Search.php At line 127 change: $words = explode(' ', $string); To: $words = array($string); After that, you will be able to search through alias with space. Of course, if you can, please make changes in override/classes/Search.php
  2. Wiem, że temat stary, ale nikt nie odpowiedział, więc podam wskazówkę dla potomnych. Miałem podobny błąd na jednym z serwerów: W moim wypadku pomogło nadanie odpowiednich chmodów (777) dla katalogu cache, cache/smarty i jego podkatalogów.
  3. In 1.6 use following code: $file_attachement['content'] = file_get_contents(_PS_ROOT_DIR_.'/file.pdf'); $file_attachement['name'] = 'Filename'; $file_attachement['mime'] = 'application/pdf';
  4. The simplest way is to set a carrier with free shipping as default carrier and then comment lines as you mentioned.
  5. I've been looking answer for the same issue... and I came up with the idea. 1. Create override file for Controller.php in override/classes/controller/ 2. You have to modify addJqueryPlugin function, for example: public function addJqueryPlugin($name, $folder = null, $css = true) { if (!is_array($name)) $name = array($name); if (is_array($name)) { foreach ($name as $plugin) { if($plugin != 'bxslider') { $plugin_path = Media::getJqueryPluginPath($plugin, $folder); if (!empty($plugin_path['js'])) $this->addJS($plugin_path['js'], false); if ($css && !empty($plugin_path['css'])) $this->addCSS(key($plugin_path['css']), 'all', null, false); } } } } 3. As you can see, I added after foreach: "if($plugin != 'bxslider')" and checked if module name isn't bxslider.
  6. Maybe it depends of payment method which was selected by customer? Which modules payment have you got? I suggest updating to 1.6.0.14
  7. Myślę, że najprościej będzie otworzyć product-sort.tpl w katalogu templatki i tam usunąć co zbędne.
  8. Możesz podać link do sklepu? Ciężko coś wnioskować na sucho...
  9. Opisywałem kiedyś przeszczepianie modułu na przykładzie blocktopmenu, zerknij proszę: https://www.prestashop.com/forums/topic/435736-solved-transplant-horizontal-menu-to-topcolumn/ Gdyby coś nie było jasne to pytaj
  10. Jest do tego np. moduł: http://addons.prestashop.com/pl/cena-promocja-prestashop-moduly-/5756-basicprice-unit-price-stuckpreis-grundpreis.html
  11. Zgodnie z przypiętym tematem: https://www.prestashop.com/forums/topic/272660-500-error-b%C5%82%C4%99dy-bia%C5%82a-strona-instrukcja-dotycz%C4%85ca-trybu-debugowania/ Włącz tryb debugowania, przeprowadź całą operację jeszcze raz i napisz czy jakieś błędy się pojawiają.
  12. Go to modules section and instal module: "home editorial". It allows to add text/video/pictures to the homepage
  13. You've got 2 js errors... Probably there is a conflict between jquery-ui-1.8.10.custom.min.js and jquery.ui.core.min.js. Try to remove jquery-ui-1.8.10.custom.min.js from your template.
  14. Hi Could you explain me what kind of content you want to add?
×
×
  • Create New...