• Resolved Ivijan-Stefan Stipic

    (@ivijanstefan)


    We have several sites where we use special email templates that come with a WordPress theme. It is no longer available to us now. How can we restore that old way?

    It doesn’t make sense for our clients to constantly create a new template if they already have one predefined.

    Let me know!

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m also having this issue with a client.

    Thread Starter Ivijan-Stefan Stipic

    (@ivijanstefan)

    On the URL /wp-admin/admin.php?page=newsletter_emails_theme i can find templates but is not available via any menu item. It’s hidden functionality now but I can’t use it like that.

    Temporarily solution can be adding this code to the active theme functions.php:

    add_action( 'admin_menu', function(){
    	add_submenu_page(
    		'newsletter_main_index',
    		__('New Newsletter by Legacy Themes', 'newsletter'),
    		__('New Newsletter by Legacy Themes', 'newsletter'),
    		'manage_options',
    		'admin.php?page=newsletter_emails_theme'
    	);
    }, 10 );

    This will display the old legacy themes option and there you can create the old way (for now).

    I hope that the authors of the plugin will solve this.

    Plugin Author Stefano Lissa

    (@satollo)

    When you start a new newsletter, you have a link to access to the template on the preset chooser popup.

    Stefano.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Where are templates?’ is closed to new replies.