• Hi Dears,
    I want to change STAFF title next to user how answer the questions, but I want this title change for each user, like “IT Manager” , “Sales Manager” , and …
    Please advice

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author DesignWall

    (@designwall)

    Hi,

    You can add the code below to
    wp-content/themes/your-theme-folder/functions.php

    add_filter( 'dwqa_get_user_badge', 'dwqa_theme_replace_staff_text' );
    function dwqa_theme_replace_staff_text( $badges ) {
        $badges['staff'] = 'IT Manager';
        
        return $badges;
    }
    
    • This reply was modified 9 years, 6 months ago by DesignWall.
    Thread Starter shahriarkkk

    (@shahriarkkk)

    Thanks, but it change all text to IT manager, I am trying to assign specific title for specific user, like IT manager for John and sales manager for Mark,
    Maybe replace Staff by user nickname can help us?
    Thnaks

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

The topic ‘change staff text’ is closed to new replies.