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

    (@eherman24)

    Hey Mauricio,

    Are you running the site in another language, such as italian?

    Thanks,
    Evan

    Hello, I have exactly the same problem Mauricio has, and I am running my site in spanish. What should we do to make it work?

    Thank you

    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 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WHITE-SCREEN’ is closed to new replies.