Replies
- Brajesh Singh on March 20, 2017 at 11:06 pm in reply to: [Resolved] Bp branded login and activation links #7976
Hi Daniele,
Thank you for posting.You are right, It seems we did not consider the activation as we only considered BuddyPress registration.
We can add support for custom account activation page or we can let wp-login.php handle it.
What will be more useful for you ? Please let me know and we can update the plugin.Thank you
Brajesh Hi Clay,
Thank you for posting.We support “order” and “orderbyy” options in teh gallery list shortcode. By default, it is sorted by date in descending order.
You can use the following options in the shortcode
[mpp-list-gallery order =’DESC’ orderby = ‘date’]All the values for order/orderby supported in WP_Query are supported in the shortcode.
https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Hope that helps.
Regards
Brajesh- Brajesh Singh on March 18, 2017 at 10:44 pm in reply to: [Resolved] Conditional Profile Fields #7964
Thank you Denis,
I and my team will be a bit off tomorrow. Please allow me to post a solution on Monday.Thank you
Brajesh You are welcome. Please do let me know if using the plugin worked for you or not?
I can provide code to avoid any image generation by Community Builder but that may not be the best solution.
Thank you Carl.
Will do 🙂- Brajesh Singh on March 18, 2017 at 10:41 pm in reply to: my website fabosocial.co.nf use bp magic but is shows illegal string offset #7961
Hi Rohan,
Thank you for posting. we will push an update coming Tuesday to fix this and a few other issues.Thank you
Brajesh Hi Carl,
Thank you.My apologies for missing the email.
This is doable but due to my current work commitments, I am not in position to do anything for atleast 2 weeks. We have several plugins, themes lined up for BuddyDev. They have kept me a lot busy recently.
I will be happy to do it in future, but I am unable to do so currently.
Thank you
Brajesh- Brajesh Singh on March 16, 2017 at 11:21 am in reply to: [Resolved] Prevent Hyperlinks in the BuddyPress Activity #7902
Ahh, sorry. I forgot about the first time ajax posting part.
Please change ‘bp_template_redirect’ to ‘bp_init’
That will do it.
- Brajesh Singh on March 16, 2017 at 11:00 am in reply to: [Resolved] Conditional Profile Fields #7898
Hi Dennis,
I am sorry for the inconvenience.If I was in this situation, I will mark the checkbox non required in admin and do a custom validation on ‘bp_signup_validate’ action to make sure that one of the checkbox is checked.
I do understand that it is not a very suitable option for the site admins. I am willing to assit you if you can tell me the field ids and their dependency on the checkbox.
Thank you
Brajesh - Brajesh Singh on March 16, 2017 at 10:55 am in reply to: [Resolved] Prevent Hyperlinks in the BuddyPress Activity #7897
Hi Dandy,
Thank you.
yes, that was only for oembed.Please add this to the bp-custom.php
function buddydev_disable_activity_links() { remove_filter( 'bp_get_activity_action', 'make_clickable', 9 ); remove_filter( 'bp_get_activity_content_body', 'make_clickable', 9 ); remove_filter( 'bp_get_activity_content', 'make_clickable', 9 ); remove_filter( 'bp_get_activity_parent_content', 'make_clickable', 9 ); remove_filter( 'bp_get_activity_latest_update', 'make_clickable', 9 ); remove_filter( 'bp_get_activity_latest_update_excerpt', 'make_clickable', 9 ); } add_action( 'bp_template_redirect', 'buddydev_disable_activity_links' );Please do let me know how it goes.
Thank you
Brajesh