Support » Plugin: Import CSV or XML Datafeed With Ease » Version 3.6 – plugin disappeared from menu bar

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

    (@smackcoders)

    If you have any issues in upgrading kindly deactivate and install 3.6 as new install. This should work and give try, let us know the results. For older version you can get it here

    Thread Starter gbonati

    (@gbonati)

    I have deactivated and reinstalled, as requested. Nope, it doesn’t work.

    I then reinstalled version 5.5, which works flawlessly.

    Plugin Author smackcoders

    (@smackcoders)

    @gbonati, we are working on this. Is this multisite? do you have any log details? curious to know the cause of the issues, so that we can plan for a release with a fix.

    Thanks @gbonati, just downloaded this plugin to multisite and it too didn’t appear in the sidebar, do now am using 3.5.5 and it works.

    Plugin Author smackcoders

    (@smackcoders)

    Yes we found the issue and there will be a fix for this. Edit the index.php and replace the following lines from line no 73 to 81

    if ( current_user_can( 'author' ) ) {
    		$HelperObj = new WPImporter_includes_helper();
                    $settings = $HelperObj->getSettings();
    		if(isset($settings['enable_plugin_access_for_author']) && $settings['enable_plugin_access_for_author'] == 'enable_plugin_access_for_author') {
    		add_menu_page(WP_CONST_ULTIMATE_CSV_IMP_SETTINGS, WP_CONST_ULTIMATE_CSV_IMP_NAME, '2', __FILE__, array('WPImporter_includes_helper', 'output_fd_page'), WP_CONST_ULTIMATE_CSV_IMP_DIR . "images/icon.png");
    		}
    	} else if ( current_user_can( 'administrator' ) ) {
    		add_menu_page(WP_CONST_ULTIMATE_CSV_IMP_SETTINGS, WP_CONST_ULTIMATE_CSV_IMP_NAME, 'manage_options', __FILE__, array('WPImporter_includes_helper', 'output_fd_page'), WP_CONST_ULTIMATE_CSV_IMP_DIR . "images/icon.png");

    with below code

    if(!is_multisite()) {
                    add_menu_page(WP_CONST_ULTIMATE_CSV_IMP_SETTINGS, WP_CONST_ULTIMATE_CSV_IMP_NAME, 'manage_options', __FILE__, array('WPImporter_includes_helper', 'output_fd_page'), WP_CONST_ULTIMATE_CSV_IMP_DIR . "images/icon.png");
    } else {
    if ( current_user_can( 'author' ) ) {
    $HelperObj = new WPImporter_includes_helper();
           $settings = $HelperObj->getSettings();
    if(isset($settings['enable_plugin_access_for_author']) && $settings['enable_plugin_access_for_author'] == 'enable_plugin_access_for_author') {
    add_menu_page(WP_CONST_ULTIMATE_CSV_IMP_SETTINGS, WP_CONST_ULTIMATE_CSV_IMP_NAME, '2', __FILE__, array('WPImporter_includes_helper', 'output_fd_page'), WP_CONST_ULTIMATE_CSV_IMP_DIR . "images/icon.png");
    }
    } else if ( current_user_can( 'administrator' ) ) {
    add_menu_page(WP_CONST_ULTIMATE_CSV_IMP_SETTINGS, WP_CONST_ULTIMATE_CSV_IMP_NAME, 'manage_options', __FILE__, array('WPImporter_includes_helper', 'output_fd_page'), WP_CONST_ULTIMATE_CSV_IMP_DIR . "images/icon.png");
    }
    }
    }

    and save the code. Post the results here. Soon there will be a release by next week.

    Thread Starter gbonati

    (@gbonati)

    I tried editing the code as suggested, but I got the following php error:

    Parse error: syntax error, unexpected '}' in ../wp-content/plugins/wp-ultimate-csv-importer/index.php on line 86

    I do believe that the problem has something to do with the multisite feature.

    This is a great plugin I am using for my site BestPriceGetIt. I look forward to your upgrade. Let me know if there is anything else I can do.

    Thread Starter gbonati

    (@gbonati)

    Great work! I have just installed version 3.6.1 and it now works perfectly!

    @gbonati,
    Thanks.

    Don’t forget to leave your valuable Rating & Feedback here.

    Thanks again.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Version 3.6 – plugin disappeared from menu bar’ is closed to new replies.