Tagged: bbpress, BuddyPress Moderation Tools
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!
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
BrajeshHi 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!
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
BrajeshHi Brajesh,
Is not possible to keep the default icon and just take away the word “report”?
Thank you so much!
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 2 years, 4 months ago by Brajesh Singh. Reason: updated
You must be logged in to reply to this topic.