BuddyDev

Search

[Resolved] buddypress users who create topics – Topics not showing in their Forum topic men

  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17451
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17452

    last bit of info…We also did add this custom bit of code to block access to wp-admin for all but admin

    add_action( ‘init’, ‘blockusers_init’ );
    function blockusers_init() {
    if ( is_admin() && ! current_user_can( ‘administrator’ ) &&
    ! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX ) ) {
    wp_redirect( home_url() );
    exit;
    }
    }

  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17453

    Hi Brajesh,

    Shall i hold off on working on our site? Let me know if there is anything else you need. Many thanks!

    Chris

  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17457
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17458
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17459
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24211
    Brajesh Singh on #17460
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17463
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24211
    Brajesh Singh on #17464
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 118
    chris on #17465
    This reply has been marked as private.

You must be logged in to reply to this topic.

This topic is: resolved