• Resolved Mr.Bushido

    (@mrbushido)


    Hello! I am wondering how to change the text of the link to a font awesome icon. I believe I am calling it correctly but it doesn’t seem to work (this code works for the bbpress admin links).

    function shido_custom_reply_admin_link( $links ) {

    $links[‘report’] = get_reply_report_link(array(
    ‘report_text’ => __( ‘<i class=”fa fa-flag fa-2x”></i>’, ‘bbpress-report-content’ ),
    ) );
    return $links;
    }
    add_filter( ‘bbp_reply_admin_links’, ‘shido_custom_reply_admin_link’ );

    https://www.ads-software.com/plugins/bbpress-report-content/

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

    (@jjeaton)

    The problem is probably that you need to set a higher priority on your add_filter call so it runs after the plugin’s code.

    something like:

    add_filter( 'bbp_reply_admin_links', 'shido_custom_reply_admin_link', 20 );

    Thread Starter Mr.Bushido

    (@mrbushido)

    Thanks Josh,

    Unfortunately this didn’t resolve the issue, I’ve given up on changing it through code.

    I’ve gone the language file route instead. Unfortunately there’s an esc_html on lines 310, 311, 622 and 623 I was wondering if you could remove this for the next version to make this sort of thing a bit easier ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change link text ?’ is closed to new replies.