• Resolved jneuerburg

    (@jneuerburg)


    Upon opening the Newsletter Dashboard in the Backend I get an Error (XXXX is some namespace\className from my used Theme):

    Uncaught Error: Call to undefined method XXXX\XXXX\XXXX::get_send_speed() in /html/staging/wp-content/plugins/newsletter/main/index.php:30

    Upon inspection of the main/index.php there is a call to $speed = $newsletter->get_send_speed(); without prior instanciation of the $newsletter variable.
    Adding this line to the index.php fixes the Issue:

    $newsletter = Newsletter::instance();

    Would be great if you could add this Fix to the actual Plugin if possible ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Stefano Lissa

    (@satollo)

    Should be fixed on version 8.3.7. Probably it was a conflict with another global variable with the same name.

    Thread Starter jneuerburg

    (@jneuerburg)

    Error still persists, only after adding the “$newsletter = Newsletter::instance();” line to the newsletter/main/index.php it works again

    Plugin Author Stefano Lissa

    (@satollo)

    Sorry, my communication fault, it is fixed on the dev branch, will be released shortly.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.