Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

  • cwulff
    Participant

    @cwulff

    Thanks for the response mercime.

    Sorry that I evidently didn’t provide enough info.

    1. A single WP install with BuddyPress. Members add posts via a GravityForm on the front-end.

    2. Deactivating the plugins (either individually or together) did not impact my ability to change the assigned author.

    3. An entry created by the form can be assigned to a Moderator author via the form. But I cannot change the author of a post (new or existing) in the WP admin to a moderator author, only to other Admin authors. Moderators don’t show up in the authors dropdown.


    cwulff
    Participant

    @cwulff

    If you want to include just one role change

    if ( $user->roles[0] != ‘subscriber’ ) :

    to

    if ( $user->roles[0] == ‘subscriber’ ) :

    or

    if ( $user->roles[0] == ‘moderator’ ) :


    cwulff
    Participant

    @cwulff

    How would you modify this to be just one group? I tried changing

    if ( $user->roles[0] != ‘subscriber’ ) : to if ( $user->roles[0] = ‘moderator’ ) :

    but it seems to still include everyone (or at least moderators as well as administrators – those are the only roles I’m currently using).

    Thoughts?


    cwulff
    Participant

    @cwulff

    How would I write a query filter so that the activity stream that I copied to the home page shows five items, while the main one shows the default twenty?

Viewing 4 replies - 1 through 4 (of 4 total)
Skip to toolbar