cancel
Showing results for 
Search instead for 
Did you mean: 

Transactional Email Templates Window Not Loading

Transactional Email Templates Window Not Loading

Dear Team,

 

I am working with magento community 1.9 over my website.

 

I am getting blank window when I click on "Add New Template" button in "System -> Transactional Emails" option.

 

Kindly suggest...

 

Regards

Rajesh Sharma

1 REPLY 1

Re: Transactional Email Templates Window Not Loading

If you're getting blank window, you probably have some 3rd party extension or custom code which is not performing well. You have few options:

1. Find an exception in error logs, try in var/log/exception.log, and paste it here in order to debug.

2. Turn on developer's mode by opening index.php and un-commenting:

ini_set('display_errors', 1);

and by adding following line near the line from above:

Mage::setIsDeveloperMode(true);

That should allow you to see error directly on screen.

3. Turn off 3rd party extensions, one by one. After each one extension that you've turned off, clear the cache and check if Transactional Email are working. That's how you can identify bad extension / code.

 

I hope you're having local/staging environment, so you can test it without headaches.

If this response was helpful to you, consider giving kudos to this post.
If this response solved your problem, click accept as solution to help others solve this issue