I need help, when I create a new newsletter, after the page of table of content, my admin template disappear... Appear a page with only this:

Create Simplenews newsletter

Add this newsletter issue to a newsletter by selecting a newsletter from the select list. To send this newsletter issue, first save the node, then use the "Newsletter" tab.
Set default send options at Administration > Configuration > Web services > Newsletters.
Set newsletter specific options at Administration > Content > Newsletters.

Please help me!

CommentFileSizeAuthor
#5 Image.png37.57 KBgatsby8870
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

leonano’s picture

I think is a problem with mime mail, but with html mail it doesn't send images...

leonano’s picture

let me explain better, i use the newsletter creation, select the content, select if make a table of content and then admin theme disappear and a part of the page appear.

brandy.brown’s picture

perhaps adding a screen shot would help. I still can't understand the issue you're having.

brandy.brown’s picture

Priority: Major » Normal
gatsby8870’s picture

FileSize
37.57 KB

Hello, can someone indicate if there was a solution for this?

The issue I am experiencing is the same: When I attempt to create a newsletter via the admin panel (http://mortgagespeak.com/node/add/simplenews) the "theme" of the web page is very generic and I no longer have the functionality to create the newsletter content. It simply displays the admin links now in a vertical layout.

The attached image is what I shown when I attempt to create a newsletter: (http://mortgagespeak.com/node/add/simplenews)

I appreciate any help and thank you very much!

gatsby8870’s picture

Hello, my programmer resolved the issue stating:

"It was an access permission issue.. the content permission is rebuilt"

I hope that it helps others!

jaesperanza’s picture

After 5 years, experiencing same issue on latest D7 core and modules. On adding a Simple newsletter - /node/add/simplenews, admin theme is not loading. Rebuilding persmissions did not help. Devel modules are off, toggled on/off caching, switched administration themes, but to no avail. Chrome, FF, no help either.

bstrokim’s picture

I had this issue and it's due to the token list rendering. I was able to fix the loading of the edit/create page by add '#dialog' => TRUE to the _simplenews_node_form() function in simplenews.module:

if (module_exists('token')) {
    $form['simplenews_token_help'] = array(
      '#title' => t('Replacement patterns'),
      '#type' => 'fieldset',
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
      '#description' => t('These tokens can be used in all text fields except subject and will be replaced on-screen and in the email.'),
    );

    $form['simplenews_token_help']['browser'] = array(
      '#theme' => 'token_tree',
      '#dialog' => TRUE, // add this to fix the loading of a newsletter edit/create page
      '#token_types' => array('simplenews-category', 'simplenews-subscriber', 'node'),
    );
  }