-
Posts
18 -
Joined
-
Last visited
enSysRanjit's Achievements
Newbie (1/14)
4
Reputation
-
product page breadcrumb and default category
enSysRanjit replied to patrmich's topic in Configuring and using PrestaShop
Hello patermich, I have the same problem.Did you solved it?if yes,Can you please share your solution here it would be helpful to me and other guys of forum. Thanks!!!- 4 replies
-
- breadcrumb
- product page
-
(and 1 more)
Tagged with:
-
Price change during order process (using module)
enSysRanjit replied to jareq's topic in Core developers
Hey Guys, Same requirement for me. It would be very helpful if you guys share you solution here. Thanks!!!! -
vekia started following enSysRanjit
-
We can achieve this by overriding AdminImportController class and make copyImage() method as public. Now you can access copyImage() method from anywhere. Hope it will help.
-
Hey guys, We can achieve this by overriding AdminImportController class and make copyImage() method as public. Now you can access copyImage() method from anywhere. Hope it will help. Thanks!!!!
-
Hey Guys, I also have this problem.I have a shared account with 1and1 and they prevent to increase max_execution_time. After one minute during image regeneration it gives 'Internal server error 500'. I also tried to upload php.ini file with require setting on root but its not working. Please help me out. Thanks!!!
-
Hello everybody, I am trying to create new custom admin controller.But It gives error 'Controller not found'. I just add one link and create a new controller in my module(MyModule/controllers/admin) folder Link code is: <a href='{$link->getAdminLink('AdminRecommendations')|escape:'html':'UTF-8'}&id_order={$id_order}' > <input type='button' class='btn btn-primary' name='recommendation' value='Recommendations'/> </a> and I created controller as: <?php class AdminRecommendationsController extends ModuleAdminController { public function __construct() { parent::__construct(); $this->postProcess(); die; } public function postProcess() { echo "Hello..."; exit(); parent::postProcess(); } } But I am getting error 'Controller not found'. Please help me. Thanks!!!
-
flexability of hook displayAdminOrder 1.6
enSysRanjit replied to Casper_O's topic in Core developers
same problem with me. hey Casper_O,how did you sort out. Please help me Thanks!!!- 2 replies
-
- displayAdminOrder
- flexability
-
(and 1 more)
Tagged with:
-
http://www.prestashop.com/forums/topic/329373-solved-abc1234jpg-an-error-occurred-while-copying-image-check-your-memory-limit/
- 13 replies
-
- php.ini
- memory limit
-
(and 1 more)
Tagged with:
-
[solved] Override Admin Controllers in 1.5
enSysRanjit replied to Rhapsody's topic in Core developers
The issue is with the return parent::renderForm(); at the end of your override. What's happening is that you're assigning variables in the AdminCustomerThreadsController::renderForm() and then calling the parent which re-assigns those same variables back to the 'un-overridden' values when you call parent::renderForm(). What you'll need to do is call the parent's (AdminCustomerThreadsControllerCore) parent (AdminController) directly: return AdminController::renderForm(); and that should work. It worked for me Thanks Terragg !!!!! -
[SOLVED] product description isn't updating
enSysRanjit replied to hhwang's topic in Configuring and using PrestaShop
I have the similar problem I am using prestashop 1.6 default-bootstrap theme When I tried to update products description it shows message update successfully but it is not updating. Similar issue with home page image slider module. Please help Thanks. -
Filter by Category in Admin Tab not working
enSysRanjit replied to crismith's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
I had the same problem. In my case there is no "Root" category in database(in ps_category table).I just added a "Root" category and set its parent category id as 0 and set "Root" category as parent category to "Home" category and my problem was solved.- 20 replies
-
- admin
- filter by category
-
(and 1 more)
Tagged with: