• Resolved gregcrowe

    (@gregcrowe)


    I updated your plugin to version 3.5. Now when I go to edit or add a post, the styles on that page are all messed up. I can’t move any of the boxes around, open the screen options tab, and tags don’t auto-suggest. Other plugins like Co-Authors Plus and WordPress SEO don’t seem to display properly either.

    Now, since I only need this plugin when I’m uploading, I was able to deactivate it and everything else seems to work fine. So my plan is to only have it activated when I am about to use it. But I thought you should know about these conflicts anyway.

    Thanks!

    https://wordpress.org/plugins/wp-ultimate-csv-importer/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author smackcoders

    (@smackcoders)

    Thank for the info. We will look into the issues, will fix it ASAP. Kindly check back again.

    My apologies, I created a new topic with this exact issue.

    Consider the following changes to the action_admin_init function in the plugin’s index.php file and replacing the admin_init action with admin_enqueue_scripts per Targeting a Specific Admin Page

    function action_admin_init($hook)
    {
    	if( 'toplevel_page_wp-ultimate-csv-importer/index' != $hook ) { return; }
    	...
    }
    add_action('admin_enqueue_scripts', 'action_admin_init');
    Plugin Author smackcoders

    (@smackcoders)

    This doesnt help but we fixed the issue. Will be available in next version in couple of days with some more modifications. Kindly check again. Thanks for the help and feedback.

    Thread Starter gregcrowe

    (@gregcrowe)

    As you promised, the new update fixed this problem. Thanks so much!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘New version of plugin interferes with edit post page styles’ is closed to new replies.