Replies
- Brajesh Singh on September 22, 2019 at 11:48 pm in reply to: Filter for specific members type in the members loop #25412
Hi,
Are you able to use bp_has_members in your loop? Can you please post the line you are using for it and I can share the updated version of that with you.Thank you
Brajesh - Brajesh Singh on September 21, 2019 at 1:34 am in reply to: BuddyBlog: How to have the members of a group informed about new posts ? #25401
Hi Eric,
Is there any chance you are not using BuddyBlog but using Blog categories for groups plugin? If you publish from a group, It will add the blog post to that specific group’s activity stream(gets added to only 1 goup’s stream).I do not see any other way.
Regards
Brajesh - Brajesh Singh on September 21, 2019 at 1:33 am in reply to: BuddyPress Deactivate Account – Deactivate set by default on registration #25400
Hi Johan,
Thank you for the update and the translations. I will add them in future release.For the conflict with BuddyPress Auto Activate Auto Login and the registration option. Do you want me to remove that option from the users screen or can you please tell me how will you like these two plugins to work together(the workflow).
I may be able to add the compatibility.
Thank you
Brajesh - Brajesh Singh on September 21, 2019 at 1:25 am in reply to: Uploading Pic on Activity not working anymore #25399
Hi Daniel,
I am sorry but I don’t understand the issue on desktop. Will test and get back to you by tomorrow.For icon, you can use the following tutorial to override them.
https://buddydev.com/mediapress/mediapress-basics/overriding-mediapress-activity-upload-icons/
Regards
Brajesh - Brajesh Singh on September 21, 2019 at 1:22 am in reply to: Get a cover image automatically for a video like YouTube #25398
Hi Kir,
Sure.
You can copy it from herewp-content/plugins/mediapress/templates/mediapress/default/gallery/manage/upload-form.phpand put it in
wp-content/yourtheme(replace it)/mediapress/default/gallery/manage/upload-form.phpYou will note a function
mpp_upload_dropzone()there. Please comment it out and it will go away form gallery uploads.
For activity, we don’t have a template override(an oversight on my part, fixing in next update). For now, you will need to modify this function
mpp_activity_dropzone()to get rid of the dropzone.
Regards
Brajesh - Brajesh Singh on September 21, 2019 at 1:15 am in reply to: Open a link in a new window or tab with BP Custom Group Tabs plugin ? #25397
Hi Eric,
Please put this javascript in your js file(or cusotm code [plugin if that allows it)(function ($) { var tabSelectors = ['#activity-groups-li', '#home-groups-li' ]; $(document).ready(function(){ if( ! tabSelectors.length){ return; } var allItemsSelector = tabSelectors.join(','); $(allItemsSelector).each(function () { $(this).addClass('no-ajax').find('a').attr('target','_blank').addClass('no-ajax'); }); }); })(jQuery);Change the ids of the tab in this line with your own
var tabSelectors = ['#activity-groups-li', '#home-groups-li' ];Or you can point me to the site and tell me which tabs and I will provide the updated list of tabSelectors.
Regards
Brajesh - Brajesh Singh on September 21, 2019 at 12:42 am in reply to: Brajesh – I forgot one question! #25396
Thank you Cindy. Appreciate the kind words.
Regards
Brajesh - Brajesh Singh on September 21, 2019 at 12:40 am in reply to: [Resolved] Tab Slug is Dynamic! How to map this tab? #25395
Hi Cap,
I finally checked it today.The tab is not actual BuddyPress tab. It is a link to another page. The plugin can not modify it. The plugin can only modify the tabs which link to something like this(http://example.com/members/xyz)
the tab does not link to a component but rather to a non BuddyPress page on the site.You will need to contact WCFM developers to modify the url.
Regards
Brajesh Hi Cap,
Thank you for the question.I do not see a proper solution available. I do see that there are options to allow the reverse(sync BuddyPress field to WordPress User meta) like this
https://wordpress.org/plugins/bp2wp-full-sync/But there are no plugin currently available to od it.
Regards
Brajesh- Brajesh Singh on September 21, 2019 at 12:32 am in reply to: Filter for specific members type in the members loop #25393
Hi,
Thank you for the question.Since you can not use the shortcode and you are creating a different page/loop, your best option is to use
member_type__not_in or member_type__in option in the bp_has_members()
You can specify one or more member type to exclude or include.Regards
Brajesh