Search the Community
Showing results for tags 'Front controller'.
-
Hi, I'm developing an external payment module in localhost. I'm new to prestashop 1.7 and I'm stuck at one place. I have made the module. Please shed some light on this fellow beginner. Actually I made the payment module but still not able to redirect successfully to payment url and order is not be...
- 4 replies
-
- prestashop1.7
- paymentmodule
-
(and 4 more)
Tagged with:
-
I created a new page in my module by creating a new front controller. I want to add js and css files to this page but I am unable to do so. I have tried a couple of things, but none are working for me. I tried adding the setMedia() function in the front controller: public function set...
- 1 reply
-
- css
- javascript
-
(and 1 more)
Tagged with:
-
Hi, I have some difficulties to create a module front controller. Everithing seems fine (I used another controller of my module to create this one) but I have a fatal error … Type error: Argument 1 passed to smartyClassnames() must be of the type array, null given, called in /var/www/ps-...
- 1 reply
-
- module
- front controller
-
(and 2 more)
Tagged with:
-
Salut j'ai fait un simple module avec un controlleur front qui fait appel à un fichier tpl . au niveau front il s'affiche l'erreur suivante : Call to a member function get() on null ceci est le code du contolleur et le fichier tpl : <?php class em_bestsellersBestProductsModuleFront...
- 1 reply
-
- prestashop 1.7.6.1
- front controller
-
(and 1 more)
Tagged with:
-
Hi i try show last order in user nav i am add code {if $orders && count($orders)} {foreach from=$orders item=order name=myLoop} {if $smarty.foreach.myLoop.first} <a class="color-myaccount" href="javascript:showOrder(1, {$order.id_order|intval}, '{$link->getPageLink('order-detail', true)|e...
-
- front controller
- blockuserinfo
-
(and 2 more)
Tagged with:
-
Hi, I want to export orders from front office. I created front controller for that but don’t know how to export orders to csv.
-
- frontoffice export
- export orders
- (and 2 more)
-
I've got a custom controller set up that extends from the front controller, it's fairly basic and currently contains the following: class StockController extends FrontController{ public function init(){ parent::init(); } public function initContent(){ $this->display_column_...
-
Hi everyone, I would like to know how to implement another Front controller in PS 1.7, do you have any guidelines? Let's say we have a new "Employee" object that could login + retrieve his lost password + access his own backoffice. He cannot create an account, it would be don...
- 4 replies
-
- override dispatcher
- new dispatcher
-
(and 1 more)
Tagged with:
-
I have have a trouble with custom module in the PS 1.7. My module is intended for exporting catalog to particular XML file (yandex market, if someone knows it). So, export works fine, except automatic and cron links. I have SEO URLs torn on, my webserver is nginx. All needed rewrite rules...
-
Hi I am a beginner in prestashop and I want to create a front controller for the in prestashop. How can I achieve that?
-
Hi guys... I am having trouble with translating the subject of messages received from contact forms... The subject the customer receives when sending a message is "Your message has been correctly sent #ct.... #tc.....)" I cannot find this anywhere in the email template translations or in any ot...
- 3 replies
-
- ContactController.php
- translation
-
(and 1 more)
Tagged with:
-
Hi... I am developing a module that has a front controller that can be accessed through an URL like this: http://website.com/index.php?fc=module&module=mymodulename&controller=default&id_index=1 When I point my URL to this address the controller, located at modules/mymodulename/controllers/front/d...
-
Bonjour à toutes et à tous, Prestashop 1.5.6.0 Boutique en cours d'achèvement... Tout fonctionnait bien jusqu'à ce jour en mode maintenance. J'ai laissé "reposer" 2 semaines. Lorsque je suis revenu sur le Front, la page d'accueil s'affiche mais dès que je clique sur un lien (produit, page cm...
- 4 replies
-
- maintenance
- cluster
-
(and 6 more)
Tagged with:
-
Hello, I've overriden the FrontController::setMedia() method to add another CSS file (so it will be linked for every themes) right after the global CSS. public function setMedia(){ ... $this->addCSS(array( _THEME_CSS_DIR_.'global.css', _PS_CUSTOMER_URI_.'css/style.css' ), 'all');...