Jump to content

Tak

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • First Name
    Taki
  • Last Name
    Tak

Tak's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Nevermind, I replaced my "js" folder with a "js" folder from a clean install and it fixed it.
  2. I have a problem with JqZoom on the product page. When I have multiples images for the product, wether JqZoom is enabled or not, gets me a JS error "this.options.step.call is not a function". It works fine if I only have one picture. I use Prestashop 1.6.1.14 with the default JS.
  3. Bonjour, Il faut copier la méthode renderForm() de la classe controllers/admin/AdminCategoriesController.php Ensuite ajouter la méthode copiée dans la classe ovverride/controllers/admin/AdminCategoriesController.php avec les modifications désirées. La dernière ligne de cette méthode appelle la méthode parente (celle que l'on a copié à la base) et du coup écrase les modifications : return parent::renderForm(); ​Il faut à la place appeler la méthode renderForm de la class AdminController : return AdminController::renderForm();
  4. In my case, the file I wanted to override was "form.tpl" located in admin/themes/default/template/helpers/form I have put my file in this folder : /yourmodulefolder/views/templates/admin/yourcontroller/helpers/form/form.tpl
  5. My bad, I found my mistake. When I created my module Controller, my IDE autocompleted the class name extends with the 'Core' suffix (AdminModuleControllerCore). Because of that, the if statement of line 83, in the Helper.php file didn't work and thus loading the wrong template. Sorry for the post.
  6. Hi, I would like to know if it was possible to overload the form.tpl template of the "admin/themes/default/template/helpers/form/ folder", from my module folder. The only way I can overload the form.tpl template is either from the override folder or the "admin/themes/default/template/controllers/mycontroller/" folder Thank you.
  7. Hi, I have a problem on the Customers > Carts Page in the back office. On the table with all the carts, the 'Total' column always shows the same price when a cart has been started. But when I click on a row, the detailed cart has the right price. Can you tell me which file sends the informations for the view used on that page ? If I'm not wrong the view used in this page is "adminfolder/theme/default/template/helpers/list/list_content.tpl" I have Prestashop 1.6.1.4, with the default theme.
×
×
  • Create New...