Replies
- This reply has been marked as private.
Hi David,
Please make sure you have the login panel set as the next action in BP Ajax Registration settings for Forget Password. I have tested it and it is working for me.Do you have any other custom modifications to the plugin?
- Brajesh Singh on December 14, 2018 at 12:34 am in reply to: [Resolved] buddypress Deactivate Account Plugin #19477
Thank you for reminding. Please put the folling code in your bp-custom.php or your theme’s functions.php
/** * Show Deactivate/Activate button in directory */ function buddydev_show_deactivate_account_button_in_dir() { if ( ! is_super_admin() ) { return; } if ( ! class_exists( 'BP_Account_Deactivator_Action_Hooks' ) || ! method_exists( 'BP_Account_Deactivator_Action_Hooks', 'get_instance' ) ) { return; } $instance = BP_Account_Deactivator_Action_Hooks::get_instance(); echo $instance->get_button( bp_get_member_user_id() ); } add_action( 'bp_directory_members_actions', 'buddydev_show_deactivate_account_button_in_dir' );That will do it.
Regards
Brajesh - Brajesh Singh on December 13, 2018 at 11:57 pm in reply to: [Resolved] Force user to complete buddypress profile #19476
Hi Chris,
Please feel free to use any of the above. WE also have a required profile fields plugin available which I will release in near future(need time for writing blog post etc).Regards
Brajesh - Brajesh Singh on December 13, 2018 at 11:56 pm in reply to: [Resolved] BuddyPress Member Types Pro – MemberShip Compability #19475
Hi Daniel,
Thank you for the patience. I tried to recreate it and check and have found the issue.The problem is with my use of certation action.
I have been using the action “ihc_action_after_subscription_activated” from ultimate memberships pro.
The problem is, it does not fire when a subscription is expired and the user is auto assigned next subscription.
I found another action ‘ihc_new_subscription_action’ but I need you to confirm it with the membership plugin that is it the correct action that will fire each time a new subscription is assigned to the user and won’t fire when editing time etc of the existing subscription of the user?
Regards
Brajesh Hi Sir,
1. Yes, the plugin is compatible with WordPress 5.0/5.0.12. As I explained in my previous reply, the dropdown will not list shared galleries. If you need to use the uploader shortcode(Uploading is possible without shortcode too), You will need to pass gallery id.
For details, Please see
https://buddydev.com/mediapress/shortcodes/mediapress-uploader-shortcode/Regards
Brajesh- Brajesh Singh on December 13, 2018 at 3:14 pm in reply to: How to redirect only newly registered users to a welcome page #19468
Hi Tosin,
With your setup, It will be difficult to detect what is newly registered users.The Auto Activate Auto login plugin has a filter ‘bpdev_autoactivate_redirect_url’ but it is for when the user registers the account.
In your case, The neaw user means the user after completing the setup.
It can be done but it needs modification to the above two functions you have posted.
I will be glad to modify it for you in next couple of days(Sorry, I am not able to assist with it today/tomorrow).
Regards
Brajesh - Brajesh Singh on December 13, 2018 at 3:13 pm in reply to: [Resolved] Mediapress – oembed works for YouTube, Slideshare etc but not for Facebook #19467
You are welcome.
It is most probably a caching issue or some plugin conflict. Try disabling caching plugin and then testing and after that others.
Regards
Brajesh - Brajesh Singh on December 13, 2018 at 2:58 pm in reply to: [Resolved] https://buddydev.com/plugins/buddypress-group-tabs-creator-pro/ #19465This reply has been marked as private.
- Brajesh Singh on December 13, 2018 at 2:57 pm in reply to: [Resolved] Mediapress – oembed works for YouTube, Slideshare etc but not for Facebook #19464
Thank you.
The problem is with your theme or site setup. Try posting normal text “hello” and see. It does not appear and you need to refresh it to appear.
Regards
Brajesh