Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi i want replace my easy modal plugin to previous version….where i get download link for v1.3.0.3

    Thread Starter stones001

    (@stones001)

    nice! thx ??

    Plugin Author Daniel Iser

    (@danieliser)

    Hey stones,

    what seems to be the issue. We tested this extensively from v3.4 on through v4alpha.

    Just verified 0 issues and 0 warning on a fresh install of 3.9.2 so im not sure what you are experiencing without more details.

    We experienced no issues like you described so any info you have would be great. We have already patched another bug in the admin sidebar that others reported. v2.0.1 is available.

    Plugin Author Daniel Iser

    (@danieliser)

    The following function should force re import of existing modals.

    Add this to your themes functions.php

    add_action('plugin_init', 'fix_my_modals');
    function fix_my_modals()
    {
    	if(!emodal_get_option(EMCORE_SLUG.'_manual_migration'))
    	{
    		emodal_delete_option('easy-modal_migration_approval');
    		if(emodal_get_option('EasyModal_Version') && !emodal_get_option(EMCORE_SLUG.'_migration_approval'))
    		{
    			new EModal_Migrate_Pre_V2;
    		}
    		emodal_update_option(EMCORE_SLUG.'_manual_migration', true);
    	}
    }

    I guess I can speak up so I don’t have to start a new thread.

    I had Easy Modal 1.3.0.3 and the latest version of WordPress before upgrading. After the upgrade it halted everything and showed:

    Parse error: syntax error, unexpected T_STATIC in classes/admin/notice.php on line 8.

    That’s because my shared server uses a PHP version that’s older than 5.3, right?

    Thanks for providing the fix_my_modals() function. ??

    Plugin Author Daniel Iser

    (@danieliser)

    Yes you are correct. I am rewriting several key sections of the plugin to be compatible. Please bear with me.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘do not upgrade to 2.0 until fixed’ is closed to new replies.