BuddyDev

Search

BuddyPress Moderation Tools

  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45388

    Hi guys!

    How can I take away the word “report” and the line below the “report” word? I just want to let the icon “!” to make it prettier.

    Thank you!

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #45393

    Hi John,
    Thank you for purchasing from us.

    Can you please tell me which theme you are using it with? Is it with BuddyPress or BuddyBoss? If BuddyPress, are you using Nouveau or Legacy template pack.

    Regards
    Brajesh

  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45401

    Hi Brajesh,

    I am using Gwangi, it’s BuddyPress and I am using the Legacy template pack.

    (Also, waiting for the Gwangi developers to make compatible mediapress as rtmedia is a mess.)

    THANK YOU SO MUCH!

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #45422

    Hi John,
    Thank you for the reply.

    You may ad dthe following code( Please use any code snippet plugin if needed).

    
    // Use 'i' instead of Report for Moderation tools.
    add_filter( 'bpmts_report_button_args', function ( $args ) {
    	$args['label'] = 'i';
    
    	return $args;
    } );
    

    This will change the report to ‘i’. If you want an icon, Please let me know the icon font and code(you can ask gwangi authors for it if they provide one).

    I hope they are able to add MedaPress support.

    Regards
    Brajesh

  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45424

    Hi Brajesh,

    Is not possible to keep the default icon and just take away the word “report”?

    Thank you so much!

  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45425
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #45430

    Hi John,
    Thank you for the reply.

    I am sorry, I did not see any icon with the Gwangi theme activity screen. I found it after activating their Grimlock for BuddyPress plugin now.

    Please use this snippet

    
    // Use 'i' instead of Report for Moderation tools.
    add_filter( 'bpmts_report_button_args', function ( $args ) {
    	$args['label'] = ' ';
    
    	return $args;
    } );
    
    

    I request my team to test MediaPress with Gwangi and see if we can assist you.

    Regards
    Brajesh

    • This reply was modified 1 year, 10 months ago by Brajesh Singh. Reason: updated
  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45433
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #45434
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 27
    John Elmer on #45458
    This reply has been marked as private.

You must be logged in to reply to this topic.

This topic is: not resolved