• Resolved af3

    (@af3)


    Hi, I am trying to NOT display the avatars for participants that are with administrator role so that only the non-admin participant will be shown.

    thanks for your help

    • This topic was modified 5 years, 7 months ago by af3.
    • This topic was modified 5 years, 7 months ago by af3.
Viewing 1 replies (of 1 total)
  • Thread Starter af3

    (@af3)

    Sorry, got this solved.

    Just filter the admin IDs from the $participants somewhere in line 22, something like this:

    $participants = fep_get_participants( fep_get_the_id() );
    $admin_ids = array("1", "2", "4");
          // Search the array and unset   
          foreach ($admin_ids as $keys){
            $keyToDelete = array_search($keys, $participants);
            unset($participants[$keyToDelete]);
           }
Viewing 1 replies (of 1 total)
  • The topic ‘Do not show admins avatar in view-message-heads’ is closed to new replies.