Replies
Hi Jennifer ,
Thank you for using MediaPress.
Please share a screenshot and point me the issue or what you are trying to accomplish. I will assist.
Thank you
Brajesh- Brajesh Singh on July 17, 2019 at 4:16 am in reply to: [Resolved] Pagination not working with Shortcodes in Profile Tabs Plugin #24121
Hi,
Thank you for reporting it.It is a bug in bbPress shortcode. Their pagination code doe snot work with current page(if permalink is enabled).
Please add following to your wp-content/plugins/bp-custom.php
or in your theme’s function.phpadd_filter( 'bbp_before_bbp_topic_pagination_parse_args', function ( $args ) { if ( ! function_exists( 'bp_is_user' ) || ! bp_is_user() ) { return $args; } $args['base'] = add_query_arg( 'paged', '%#%' ); return $args; } );That should fix the pagination. Please let me know if it works or not?
Thank you
Brajesh - Brajesh Singh on July 17, 2019 at 4:01 am in reply to: Add private message button to the BP menu with Tabs Creator Pro #24120
Hi Carsten,
Thank you for the question.The private message link is dynamic, so you can not add it like this. By dynamic, I mean the nonce not the url. WE can handle dynamic url pretty well.
It is still doable but will need to write a filter for our url parser.
Also, you are right . Currently, selecting other profile is an issue too. Overall, I guess, there is no straightforward way to implement it.
Regards
Brajesh Hi,
This is beyond what we can provide as support here. It falls in the domain of plugin development as you are not looking for a few lines of code but complete functional plugins.We may be able to do it sometimes in future(depending on our priority) but not now.
Regards
Brajesh- Brajesh Singh on July 15, 2019 at 1:29 pm in reply to: Show whatsapp chat link on user's budypress profile #24107
Sorry,
It seems there were confusion about my answer. Since you had asked how to create the field type, my suggestion was to look at the code.Regards
Brajesh Marking resolved as per the other thread.
Regards
BrajeshYou are welcome.
- Brajesh Singh on July 15, 2019 at 10:02 am in reply to: [Resolved] Why does BP Members Directory reload every time? #24102
Hi Carsten,
Thank you for confirming. I hope the legacy suits your need.Regards
Brajesh - Brajesh Singh on July 15, 2019 at 10:00 am in reply to: Automated Cover Images per Member Type #24101
Hi Mike,
Thank you for the feedback.1. You are right, There is no button for removal under predefined badges(roles). We will add that it in next release.
For now, Please use the “Upload Image” button to assign new badge to it. It will work.(Please check if it saved).
2. The cover image will be available tomorrow.
3. For badge multisite compatibility(multi network active or multi blog mode) we are facing some issue. The roles are specific to a site and not the network. How do we handle roles badge on a site? Do we use the badge from the main site or we allow uploading on each site?
Please let me know your thought.
Thank you
Brajesh Hi,
Sure you can use the filter ‘bp_local_group_notifier_skip_notification’Based on current user, return true for everyone except Teachers.
It will skip the recording for them.
Regards
Brajesh