Replies
- Brajesh Singh on April 3, 2018 at 10:29 am in reply to: [Resolved] Problems with redirecting after registration [code of Rajesh] #14254
Hi Khol,
Thank you for clarifying.Let us start from the beginning again:-
1. How did you insert the code(from where did you do that.
If you have put it in bp-custom.php, it must be in wp-content/plugins directory. Otherwise, it will not be loaded.
is there any chance that you put the code in theme’s functions.php?
I am sorry but my options are limited. Unless I know where have you put the change, I am unable to assist.
Please let me know as much detail as possible.
Thank you
Brajesh. - Brajesh Singh on April 3, 2018 at 10:11 am in reply to: [Resolved] Problems with redirecting after registration [code of Rajesh] #14251
Also,
Uninstalling BuddyPress will not remove any data. They will remain safe and will be available when you reinstall it. - Brajesh Singh on April 3, 2018 at 10:09 am in reply to: [Resolved] Problems with redirecting after registration [code of Rajesh] #14250
Hi Khol,
The Mail logging plugin can help you troubleshoot if the mail is a problem on the MTA level or the sender program level.Before you uninstall and reinstall, You need to know if it is really BddyPress or any extra code doing it or it is server.
If the mail logging shows the mail but the user does not receive it, You will need to contact the server admins for the same.
I have seen this issue that mail sent by WP not being recieved on users from same domain on so many hosts. It happens dues to security policies.
So, I will suggest you to first isolate the issue and then a solution can be found.
Also, enabling WP_DEBUG can give you more understanding too(But it will show all errors and not suggested for a live site)
Regards
Brajesh Hi Josef,
Sorry for the trouble. Yes, It’s a bit laborious to add icons if you have many tabs.I am glad you did it already.
Regards
Brajesh- Brajesh Singh on April 3, 2018 at 10:03 am in reply to: [Resolved] BuddyPress Simple Front End Post (privilege of users) #14247
Hi Dime,
For the 1,2 can you please tell me which plugin are you using for membership?For the image part, can you please provide a little more details.
Thank you
Brajesh - Brajesh Singh on April 3, 2018 at 9:59 am in reply to: [Resolved] Problems with redirecting after registration [code of Rajesh] #14246
Hi Khol,
If the file is not in the wp-content/plugins directory then it won’t be loaded by BuddyPress. So, the code won’t apply in that case.I will suggest installing a mail logging plugin and check in the admin if the mails were sent. That will give you a better idea of what is going on.
Hope that helps.
Hi George,
Please upgrade the plugin.It seems you are using an older version of plugin. We did update for it in 2015.
Please check and let me know.
Regards
Brajesh- Brajesh Singh on April 3, 2018 at 9:46 am in reply to: [Resolved] Problems with redirecting after registration [code of Rajesh] #14243
Hi Khol,
Did you create a new bp-custom.php in your wp-content/plugins directory?Also, did your email worked earlier? The code runs after the email gets sent, so It won’t have any effect on email.
Regards
Brajesh - Brajesh Singh on April 3, 2018 at 1:26 am in reply to: [Resolved] Correct add class to Buddypress Register Popup #14237
Hi,
A. Why not keep multiple fields in the base tab or first tab? You can rename it what you want.1. Xprofile Location:- We will check for compatibility and will let you know by early tomorrow.
2. Conditional Profile field plugin’s latest version is not tested with the Ajax Registration plugin. We will need a little time on that to test for the compatibility.
3. You can diable auto activation mode by adidng this codeadd_filter( 'bpajaxr_is_auto_activation_mode', '__return_false' );4. Privacy settings:- You can control it. The default applies to newly registered members. If you allow users to change it, They can control their profile visibility or you can disable for user and manually set for individual users.
I can assist with the code quickly, I need one last answer from you:- Do you want to keep pagination for the 100 users? Here is for with pagination
/** * Only show recent 100 users. * * @param array $args query args. * * @return array */ function buddydev_limit_las_100_members( $args ) { $args['max'] = 100; return $args; } add_action( 'bp_after_has_members_parse_args', 'buddydev_limit_las_100_members' );5. Sorry, there is no special css for it. You may want to customize the ajax-register-form.php file instead by copying it to your theme.
Regards
Brajesh Hi Joseph,
Thank you for purchasing the plugin.In case of BuddyPress Navigation, The icon is not part of the navigation but added via css(at least that’s what all themes have done till now).
The best way to achieve it with the Profile Tabs plugin is to add specific css class to the tabs and then using the Appearance->Customize->Additional CSS section to add css.
If you can link me to the site, I can help better(I am assuming that your theme uses icons for tab or you have an icon font loaded).
Thank you
Brajesh