Jump to content

polaram

Members
  • Posts

    15
  • Joined

  • Last visited

polaram's Achievements

Newbie

Newbie (1/14)

  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

3

Reputation

  1. /modules/foo/views/Prestashop/Admin/Product/CatalogPage/ Problem is lowercase "Prestashop" need to be "PrestaShop". After lot bangging head to it i got this. thanks
  2. It is working, there is a small change in folder structures. Please check structure in src/PrestashopBundle folder first. There is an extra folder "CatalogPage" Now you have to put files in modules/foo/views/PrestaShop/Admin/Product/ CatalogPage/ It will start working.
  3. I am facing same issue. added twig file in modules/productdisplay/views/Prestashop/Admin/Product/catalog.html.twig but there is no impact. In past i did this and it worked fine. But now its is not.
  4. This issue can only be fixed by setting id_cart field as unique key field in table ps_order (ps_ may vary based on prefix). To do this you have to delete all duplicate orders first.
  5. Take VPS http://www.bluehost.com/vps, server response time issue will be solved.
  6. Prestashop allows only first level parent category in url. It will keep id's in url also. To achieve this you need to modify core coding.
  7. https://github.com/stoysnet/prestashop/wiki/SmartBlog-Module Please check this module. its free
  8. Please check images storage system. You might mixing up old and new storage structure.
  9. Hi Guys, had same problem. After installation if i visit admin link it says controller not found but dashboard was working fine when i click on dashboard menu link. i did one fix:- Before last line in admin/index.php // Prepare and trigger admin dispatcher /*---------- to redirect dashbord --------*/ if (!isset($_GET['controller']) && !isset($_GET['tab'])) { $_GET['controller']='AdminDashboard'; } /*---------- to redirect dashbord --------*/ Dispatcher::getInstance()->dispatch(); Thanks
  10. Please regenerate htaccess file Preferences->SEO & url Do save once your htaccess will be regenerated .
  11. It works till first parent only not recursive
  12. Hi, Here is solution. //Change in classes/Dispatcher.php //line number 60 'category_rule' => array( 'controller' => 'category', 'rule' => '{category:/}{id}-{rewrite}/', 'keywords' => array( 'id' => array('regexp' => '[0-9]+', 'param' => 'id_category'), 'category' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), these two bold lines not there in current file //classes/Link.php line number 155 just update this function public function getCategoryLink($category, $alias = null, $id_lang = null, $selected_filters = null) { if (!$id_lang) $id_lang = Context::getContext()->language->id; $url = _PS_BASE_URL_.__PS_BASE_URI__.$this->getLangLink($id_lang); if (!is_object($category)) $category = new Category($category, $id_lang); // Set available keywords $params = array(); $params['id'] = $category->id; $params['rewrite'] = (!$alias) ? $category->link_rewrite : $alias; $params['meta_keywords'] = Tools::str2url($category->meta_keywords); $params['meta_title'] = Tools::str2url($category->meta_title); $pcategory= new Category($category->id_parent, $id_lang); if($category->id_parent!=1 && $category->id_parent!=2) $params['category'] = $pcategory->link_rewrite; // Selected filters is used by the module blocklayered $selected_filters = is_null($selected_filters) ? '' : $selected_filters; if (empty($selected_filters)) $rule = 'category_rule'; else { $rule = 'layered_rule'; $params['selected_filters'] = $selected_filters; } return $url.Dispatcher::getInstance()->createUrl($rule, $id_lang, $params, $this->allow); } got to admin Preferences->seo & Url Change Route to category to this {category:/}{id}-{rewrite}/ This if my first reply to prestashop forum. I am working on prestashop from last 2 and half year. I will keep updating forum. Thanks
  13. can anybody tell me when prestashop 1.5 going to release
×
×
  • Create New...