Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author anmari

    (@anmari)

    Hi maudit,

    It works the same way as on single sites.
    Slightly different fields and less of them are available at the network admin level for obvious reasons.

    See http://wpusersplugin.com/3221/getting-started-with-amr-users/
    and follow instructions.

    Create sample data
    Find Fields
    Configure lists

    More multisite info
    http://wpusersplugin.com/related-plugins/amr-user-plugin-add-ons/amr-users-multisite/

    Thread Starter maudit

    (@maudit)

    Yes, but when I click on Configure a list

    the list of field it isn’t visible

    http://www.goodgest.com/gio/anmari/screen-amr-users.png

    ….how can I do?

    Plugin Author anmari

    (@anmari)

    wow maudit,
    Ive not seen that before. It’s missing the whole big configure box.

    The code that produces the list of fields is the same code that does that submenu – the same function even – so unlikley it is a code corruption problem as the function is definitely executing.

    So…. only a few other reasons I can think.

    !) Looking at the code, if have NO ‘fields’ – ie you have not run nicenames OR you have excluded ALL fields from the reports then the table will be empty (on my system it still shows the table header). Double check you have fields and at least are NOT ticked ‘exclude from reports’.
    Goto users lists > general settings > fields and nice names.

    2) There is some space there before the admin footer. maybe weirdly the table is hidden by css.

    Do you know how to use ‘inspect element’ or firebug in the browser? Click in the empty space and see it the html is actually there. Alternately “view source” and search in the html for ‘userlistfields’ – that is the class of the table name. Os it there ? are there any error messages in the html ?

    If none of that shows anything, try going to general settings, near the bottom of the page and click
    “Reset all options”

    then find fields, update
    then configure

    Let me know how you go.

    Also be interesting to know if you see same behavior in the network admin (Your screenshot shows the ‘directory’ list which only shows in subsites not in network admin)

    Thread Starter maudit

    (@maudit)

    Yes, the screen is on subsite… in network admin works properly….

    and…. yes! you are right on point 2! 🙂 there is something with css that hidden the list… on sourcecode there is all the right plugin code….

    how could I do to resolve?

    Thread Starter maudit

    (@maudit)

    Hallo again, there is a problem with this theme:

    http://themeforest.net/item/eprom-wordpress-music-theme/3737930

    when active doesn’t show the userlistfields…..

    😉

    Plugin Author anmari

    (@anmari)

    ok,

    now use ‘inspect element in chrome or firebug’ again and see what css affecting it – then you please report that on the themes forum – ie that their theme css is loading in the admin backend and one of the classes is hiding stuff on admin pages. Who knows it may affect other plugins too an people would be grateful.

    This here sounds like a similar problem with another theme:
    http://wordpress.org/support/topic/empty-settings-page-1?replies=3#post-4786855

    My guess is perhaps they have a ‘clear’ class which they have set to hidden. WP admin uses the ‘clear’ class to clear ‘floats’ and I am using the wp class for the table to clear the ‘menu’ above.

    <div class="clear userlistfields">
    <table class="widefat" ....

    WP uses dummy empty divs to clear, so the rest of wp admin is unaffected if these get hidden. <div class="clear></div>

    I dummied it up and that is exactly what happens.

    See http://imgur.com/a/zyVvW

    In next version of plugin the clear class will be in a dummy div to achieve the clear float. If this is what it is on your site, then In the interim you could change line 267 of ameta-admin-configure.php to be two lines like this:

    ` echo PHP_EOL.'<div class=”clear”></div>’;
    echo PHP_EOL.'<div class=”userlistfields”>’;`

    As a community service I’d suggest you report it anyway as they may have other users experience funnies like this.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Configure a user list on multisite’ is closed to new replies.