• Plugin after the update is not working. All the settings from the previous version deleted. Author for soap!

Viewing 1 replies (of 1 total)
  • Plugin Author Daniel Iser

    (@danieliser)

    All of your modals are still there. We just changed how we store them. Once they have been imported successfully they will be flagged as done, but we havent added functionality to delete them permanantly yet just for this reason.

    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);
    	}
    }

    Thanks for the high review even still. Just know we tried to prevent issues like this through weeks of testing. But it seems the gremlins are still showing themselves.

    Be sure to check out all the new functionality.

Viewing 1 replies (of 1 total)
  • The topic ‘Bad update Version 2’ is closed to new replies.