Replies
- Brajesh Singh on February 4, 2020 at 6:48 am in reply to: Display a shortcode in Xprofile fields from another Plugin. #27582
Hi Peter,
Welcome to BuddyDev.This is doable if you want your users to enter some data. In case of BuddyPress, only a field with some data is fetched and shown on profile page.
If you want to create a field which uses shortcode from another plugin but the user does not enter any data, It is not doable(atleast easily since BuddyPress won’t list the field).
If you want, You can provide me a field id(text or multiline text field) and I can help getting your shortcode working in it.
Regards
Brajesh - Brajesh Singh on February 4, 2020 at 6:44 am in reply to: [Resolved] Buddypress editable activity #27581
Hi Chameli,
Thank you for reporting this. we need to add support for it in the plugin. Please allow us next 2-3 days to have it in the plugin.
Thank you
Brajesh - Brajesh Singh on February 4, 2020 at 6:36 am in reply to: Buddyoress user registration from not working #27580
Hi Bharat,
Thank you for the question.I will need some time to check this code. Will get back to you in next couple of days.
Regards
Brajesh - Brajesh Singh on February 2, 2020 at 10:34 pm in reply to: Visible Gallery Only Private Groups #27569
Hi Javier,
You will need some way to restrict visibility of the content.Here is some code to create conditional shortcode
/** * Only show content if user is logged in. * [if-logged] .....[/if-logged] */ add_shortcode( 'if-logged', function ( $atts, $content = '' ) { if ( ! is_user_logged_in() ) { return ''; } return do_shortcode( $content ); } );Once you have this code, you can wrap other shortcodes/contents inside it to make it only visible to logged in user.
Here is an example
[if-logged] [mpp-list-gallery id=1355 column=1] [/if-logged]Regards
Brajesh - Brajesh Singh on February 2, 2020 at 10:23 pm in reply to: [Resolved] BuddyPress Custom Xprofile – Conflict with Woocommerce Checkout Input Field #27568
Hi C,
Please upgrade to 1.1.4 and let me know if that fixes it.It seems to me that the issue is related to how select2 js is being used. I have disabled even registering the select2 from our plugin on non relevant pages. That should fix it.,
Regards
Brajesh - Brajesh Singh on February 2, 2020 at 10:21 pm in reply to: Add profiles fields in members directory #27567
Hi,
Sure. I will love to do a tutorial in a week. It seems it might help many people.Regards
Brajesh - Brajesh Singh on February 2, 2020 at 10:20 pm in reply to: [Resolved] Restrict access to Buddypress if no member type #27565
Thank you!
- Brajesh Singh on February 2, 2020 at 10:20 pm in reply to: Conditional Profile Fields for BuddyPress not working #27564
Hi Mizzlaura ,
Welcome to BuddyDev forums.Please share some screenshots to help me understand the issue.
Thank you
Brajesh - Brajesh Singh on February 2, 2020 at 10:18 pm in reply to: BuddyPress Moderation Tools – Pop Up Issue – Off Screen #27563
Hi John,
Thank you for the topic and the video.It is not a bug. This is expected result and the popup is not cutting off the screen.
Your page has content longer than the view, that makes the space available(which is visible on scroll).
The popup is designed to position itself closely to the “Report” button and if there is no space(say there was no scroll), It will reposition to be inside the visible area.
In the example video, the space is there due to scroll, so it positions itself close to the report button.
If you want, you can resolve this by changing the behaviour of the buttons(instead of opening them in centre, you can open them near the handle).
Regards
Brajesh - Brajesh Singh on February 1, 2020 at 7:24 pm in reply to: BP Private MSG for non logged in users #27553
Hi Han,
Please consult BuddyBoss’s team for support. It is a paid theme and they should be able to help you better.Regards
Brajesh