• Resolved Eckstein

    (@eckstein)


    Is there a way to change the title of the Q&A Tab to something else? I’d like to change it to “Questions” instead, but I can’t seem to figure out the key of the tab in my custom function.

    I’ve tried:

    $tabs[‘qna’][‘title’] = ‘Questions’;

    $tabs[‘cr_qna_tab’][‘title’] = ‘Questions’;

    $tabs[‘tab-cr_qna’][‘title’] = ‘Questions’;

    And a few others with no luck.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support pear8398

    (@pear8398)

    Hi,

    Thank you for using CusRev.

    The Q&A tab ID is cr_qna, you can try to use the code below to change the tab title

    $tabs['​cr_qna']['title'] = 'Questions';

    or the CusRev filter hook cr_qna_tab_title

    add_filter( 'cr_qna_tab_title', function( $tab_title ) {
        $tab_title = 'Ask a question';
        return $tab_title;
    } );

    Let me know if it helps.

    Thread Starter Eckstein

    (@eckstein)

    Perfect, the cr_qna_tab_title filter worked great, thank you!

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

The topic ‘Change Q&A Tab Title’ is closed to new replies.