• Resolved eureka345

    (@eureka345)


    Ever since updating to the latest version of this plugin, I’m missing the option to edit the columns in my user admin page. When I am in the settings screen for admin columns, the drop down menu gives me all my post types, comments and media.. but I’m not seeing the “other” section I used to see where I could select users and edit the columns for that screen. Any suggestions?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Stefan van den Dungen Gronovius

    (@dungengronovius)

    Hi,

    Hmm, that’s strange, the User overview should be visible in the dropdown list. It is not listed in the ‘other’ section though but it has it’s own group. Maybe something went wrong with the update, can you try to install the plugin again?

    Otherwise can you try to add this part behind wp-admin/ in your URL? It should bring you to the settings page for users.
    ?page=codepress-admin-columns&list_screen=wp-users

    Plugin Author Stefan van den Dungen Gronovius

    (@dungengronovius)

    @eureka345 Did you have any luck trying to reach our settings page?

    Thread Starter eureka345

    (@eureka345)

    Hey – Thanks for checking in.

    I tried deleting the app and reinstalling it. Tried going directly to the link as you suggested. No luck.

    Anything else you can think of that I should try?

    Plugin Author Stefan van den Dungen Gronovius

    (@dungengronovius)

    Is there any way I could get temporary access to your environment so I can have a look? Please send any credentials to [email protected].

    Plugin Author Stefan van den Dungen Gronovius

    (@dungengronovius)

    The user list screen is disabled on a multisite install because there were some issues. To enable Admin Columns to a multisite install, the following snippet can be used in the function.php.

    /**
     * @param CPAC $ac
     */
    function ac_register_user_list_screen_on_network_site( $ac ){
    	$ac->register_list_screen( new AC_ListScreen_User() );
    }
    add_action( 'ac/list_screens', 'ac_register_user_list_screen_on_network_site' );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Users’ is closed to new replies.