cancel
Showing results for 
Search instead for 
Did you mean: 

Patch 6788 for Free Extension Kinento Payment Order Reminder

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Patch 6788 for Free Extension Kinento Payment Order Reminder

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

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Patch 6788 for Free Extension Kinento Payment Order Reminder

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.

Problem solved? Click Accept as Solution!

View solution in original post

4 REPLIES 4

Re: Patch 6788 for Free Extension Kinento Payment Order Reminder

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.

Problem solved? Click Accept as Solution!

Re: Patch 6788 for Free Extension Kinento Payment Order Reminder

Great, that solved the problem!

Re: Patch 6788 for Free Extension Kinento Payment Order Reminder

Is it possible to get the modified files?

 

Thanks in advance Smiley Happy

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.

Problem solved? Click Accept as Solution!