- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I have noticed that the well known and excellent free Payment Order Reminder Module Kinento see
https://github.com/Kinento/order-reminders has not been updated for Patch 6788.
I have tried doing this manually without success. Do you have an idea what I am doing wrong?
Path:
Kinento\Reminder\controllers\Adminhtml\Reminder\
SendController.php
class Kinento_Reminder_Adminhtml_Reminder_SendController extends Mage_Adminhtml_Controller_Action
ViewController.php
class Kinento_Reminder_Adminhtml_Reminder_ViewController extends Mage_Adminhtml_Controller_Action
Path:
Kinento\Reminder\etc\
Config.xml
<admin>
<routers>
<adminhtml>
<args>
<modules>
<reminder before="Mage_Adminhtml">Kinento_Reminder_Adminhtml_Reminder</reminder>
</modules>
</args>
</adminhtml>
</routers>
</admin>
and
<menu>
<sales>
<children>
<reminder translate="title" module="reminder">
<title>Order Reminders</title>
<sort_order>700</sort_order>
<action>adminhtml/reminder/view_main</action>
</reminder>
</children>
</sales>
</menu>
When trying to view the Order Reminders Grid I see only a blank page
Appreciate the Forum help.
Thanks
Phil
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello poescp,
I have downloaded this module. I changed:
#app/code/local/Kinento/Reminder/etc/config.xml
....
<admin>
<routers>
<adminhtml>
<args>
<modules>
<reminder before="Mage_Adminhtml">Kinento_Reminder_Adminhtml</reminder>
</modules>
</args>
</adminhtml>
</routers>
</admin>
....
<menu>
<sales>
<children>
<reminder translate="title" module="reminder">
<title>Order Reminders</title>
<sort_order>700</sort_order>
<action>adminhtml/reminder_view</action>
</reminder>
</children>
</sales>
</menu>
Creating folder structure:
Remember that we must change the class of controllers.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello poescp,
I have downloaded this module. I changed:
#app/code/local/Kinento/Reminder/etc/config.xml
....
<admin>
<routers>
<adminhtml>
<args>
<modules>
<reminder before="Mage_Adminhtml">Kinento_Reminder_Adminhtml</reminder>
</modules>
</args>
</adminhtml>
</routers>
</admin>
....
<menu>
<sales>
<children>
<reminder translate="title" module="reminder">
<title>Order Reminders</title>
<sort_order>700</sort_order>
<action>adminhtml/reminder_view</action>
</reminder>
</children>
</sales>
</menu>
Creating folder structure:
Remember that we must change the class of controllers.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Patch 6788 for Free Extension Kinento Payment Order Reminder
Great, that solved the problem!
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Patch 6788 for Free Extension Kinento Payment Order Reminder
Is it possible to get the modified files?
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Patch 6788 for Free Extension Kinento Payment Order Reminder
Hello,
You can download original code from Github: https://github.com/Kinento/order-reminders
Then, download my code here and replace original code by my new code lines.