"Save and Copy" function for Email Templates

4 posts by 2 authors in: Forums > CMS Builder
Last Post: January 30, 2023   (RSS)

By daniel - October 10, 2022

Hey Codee,

That's a great idea - the Email Templates could definitely benefit from the Save & Copy button. Here's a patch you can add to saveAndCopy.php to enable it; on line 21 change this:

  $addButton = isset($menuType) && ($menuType == 'multi' || $menuType == 'category') && ($action == 'add' || $action == 'edit');

To this:

  $addButton = isset($menuType) && ($menuType == 'multi' || $menuType == 'category' || $tableName == '_email_templates') && ($action == 'add' || $action == 'edit');

Try it out and let me know if you have any issues!

Thanks,

Daniel
Technical Lead
interactivetools.com

By Codee - January 30, 2023

Cool!  Thank you, Daniel!

*Also, I apologize for the delay in responding...I literally just saw your response for the first time this evening. I added your code modifications and will test it out in the coming days. Thanks again!

By Codee - January 30, 2023

Daniel,

It works GREAT!!  Thank you!