Replies
Marking closed as per the earlier message.
- Brajesh Singh on April 3, 2019 at 12:00 pm in reply to: [Resolved] Redirect on first login – xprofile #21835
Hi Vivek,
I am sorry, There was an issue with the previous code. It should be$redirect_to = bp_core_get_user_domain($user->ID ) .'profile/edit/group/2/';I had missed the last single quote.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 8:52 am in reply to: [Resolved] FEATURE IDEA – Limit Groups Per User – Who can create a group / by role #21830
Thank you for the patience.
It is coming today or tomorrow.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 8:50 am in reply to: [Resolved] “number of comment-limit” to work “FOR EACH POST” #21829
Yes. That means time limit will be for ever.
Please allow me to ask one of my team members to write an addon for this. It makes more sense as a plugin.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 8:48 am in reply to: [Resolved] Error – Plugin restrict private MP #21828This reply has been marked as private.
- Brajesh Singh on April 3, 2019 at 8:38 am in reply to: [Resolved] Moderation Tools – Report Button – Icon #21827
Thank you.
We have two approaches.
1. We can use a translation tool to replace ‘report’ with
or space and it will work.
2. Or we can filter the button markup and update it/** * Filter Moderation button for activity/comment. * * @param string $button button markup. * @param array $args args. * * @return string */ function bpmts_custom_button_filter( $button, $args ) { if ( ! isset( $args['item_type'] ) || ! in_array( $args['item_type'], array( 'bp_activity', 'bp_acomment' ) ) ) { return $button; } $label = '<span>' . __( 'Report', 'buddypress-moderation-tools' ) . '</span>'; $use_bp_button_markup = $args['use_wrapper']; $wrapper_tag = $args['wrapper_tag']; ob_start(); ?> <a href="#" data-item-id="<?php echo esc_attr( $args['item_id'] ); ?>" data-item-type="<?php echo esc_attr( $args['item_type'] ); ?>" data-context="<?php echo esc_attr( $args['context'] ); ?>" data-context-id="<?php echo esc_attr( $args['context_id'] ); ?>" class="bpmts-report-button <?php echo $args['link_class']; ?>"><?php echo $label; ?></a> <?php $button = ob_get_clean(); if ( $use_bp_button_markup ) { $button = "<{$wrapper_tag} class='bpmts-moderation-button-wrap bpmts-type-{$args['item_type']}-button generic-button {$args['wrapper_class']}'>{$button}</{$wrapper_tag}>"; } return $button; } add_filter( 'bpmts_report_button', 'bpmts_custom_button_filter', 10, 2 );You may put it in your child theme or bp-custom.php and then use css to hide the span wrapping the text.
That should do it. Please give it a try and let me know.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 5:58 am in reply to: [Resolved] Moderation Tools – Report Button – Icon #21823
Hi Mic,
Thank you.1. Can you please disable the Share plugin temporarily. It has incorrect markup and is leading the report button to the next line(we are putting lower priority to show the report button as last. That makes the button affected by other plugin’s issues).
Please do and I will share some css. It is simple.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 5:21 am in reply to: Hos to make the registration process more user friendly #21821
Hi Carsten,
Thank you.I will share an example with css for the same. Will link here after the post.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 3:23 am in reply to: [Resolved] “number of comment-limit” to work “FOR EACH POST” #21818
Yes. That will be the case. The only thing missing will be that you can not set time limit.
Regards
Brajesh - Brajesh Singh on April 3, 2019 at 3:22 am in reply to: [Resolved] Moderation Tools – Report Button – Icon #21817
Hi Mic,
Thank you for the topic.Since the icons are supplied by the theme, you are not seeing it for 3rd party plugins. It can be easily addded for the buttons from 3rd party plugins too.
Please link me to the site and provide a guest account(subscriber) and I can help you with the css(Is the details same as shared in another thread?).
Thank you
Brajesh