• Resolved felipesilvah

    (@felipesilvah)


    I installed te plugin and evereything were right but when I select the list to import a form, and click the button, it shows a white screen and when I check if the list were linked, nothing happened.

    I repeated the process and it happens again and again.

    This installation es in spanish, I deactivated other plugins to see if there were a conflict, and still the same problem.

    Can you tell me what can I do to make it works?

    Thank you.

    https://www.ads-software.com/plugins/yikes-inc-easy-mailchimp-extender/

Viewing 1 replies (of 1 total)
  • Plugin Author Evan Herman

    (@eherman24)

    Hi Felipesilvah,

    The issue is related to the page basenames being translated by the plugin. We are working on getting a patch released to remedy the issue.

    What you can do in the meantime is open up class.yksemeBase.php and locate the function addAdministrationMenu() . Remove the i18n functions from each of the menu pages to prevent them from being translated.

    Fore xample, you would change this line:

    add_menu_page( __('MailChimp Forms','yikes-inc-easy-mailchimp-extender'), 'MailChimp Forms', 'manage_options', 'yks-mailchimp-form', array(&$this, 'generatePageOptions'), 'dashicons-welcome-write-blog', 400);

    to this:

    add_menu_page( 'MailChimp Forms', 'MailChimp Forms', 'manage_options', 'yks-mailchimp-form', array(&$this, 'generatePageOptions'), 'dashicons-welcome-write-blog', 400);

    and do the same for all the following pages. That way the page names won’t be translated and the scripts and styles will be properly enqueued on those pages.

    Thanks,
    Evan

Viewing 1 replies (of 1 total)
  • The topic ‘White screen after list selected’ is closed to new replies.