• I want to know if there is a way to automatically promote users to a level 4 when they register. It seems a little tedious to always be checking to make sure to promote users when you want everyone to be at level 4.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • You will have to manually change wp-register.php on line 58:
    $user_level = get_settings('new_users_can_blog');
    to
    $user_level = 4;

    Regards

    I’m wondering, can this be done on a multiblog, with different user levels automatically set for each blog?

    So a when a member registers only once, they have for example, user level 4 set on blog 1, and user level 6 set on blog 2?

    Is this possible?

    thanks

    Well if the multiblog used different versionof the wp-register.php file, then sure, you could make the modification I suggested above.

    If they are sharing the same file(codebase) then you would have to get a little more tricky by perhaps looking at the URL that was used to access the file and so on.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Automatic User Promotion?’ is closed to new replies.