Forum Replies Created
-
@bennygill – See this thread: https://buddypress.org/support/topic/does-buddy-press-work-at-all/
Are you logged in when clicking the “registration” link?
@icondeposit,
Does your custom code work if you use the BP Default theme?You can also use the following plugins for higher-level ip blocking and behavior blocking:
– Bad Behavior
– WordFence
– Better WP SecurityLooking good! “Grunts” and “Hunters” are giving me 404 errors.
@ninjaface – I have not encountered this issue before. The way I would troubleshoot is:
Deactivate All Plugins
Switch to Default theme
Does this fix the problem? If so, then the problem is either your custom theme or a plugin issue. If the problem persists taking the above steps, then try re-installing WordPress and BuddyPress.@hadi060 – See this ticket for a status update on that issue: https://buddypress.trac.wordpress.org/ticket/2225
You might also try https://wordpress.org/extend/plugins/buddypress-real-names/
Note that it is untested in recent versions of BP.The best solution I have found to stop spam is forcing users to fill out a CAPTCHA on registration. It’s not ideal, but it’s part of the price of entry for our community.
`And why am I showing up as “Deleted User”?`
Are you able to visit your profile page here on BuddyPress.org? If so, try changing your username.@rogercoathup is right. Use `bp_loggedin_user_domain()` and not my function.
…note to self, update header code in my theme…Regarding how and where to add the code, try adding the following to your template:
“
What is the result?
Does flushing/resetting the permalinks help?
https://codex.wordpress.org/Using_Permalinks#Choosing_your_permalink_structure
This is likely a CSS issue.
You could use jQuery to check the value of the drop-down.
Otherwise, you will need to hook into BuddyPress’ validation hook. Perhaps this link will get you pointed in the right direction:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-validate-required-registration-field-but-not-with-bp-profile-setup/You will need to create a tab:
http://wordpress.stackexchange.com/questions/6719/buddypress-adding-a-new-tab-in-groupsAnd then you will need to create an input field to populate the tab:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-add-fields-to-group-creation-with-group-extension-api-please-read/Note that I have never done this, but hopefully those links will point you in the right direction.
@michaelecklund – This is an open-source, community-driven project. Please feel free to submit patches!
I am out of my element here, but I will try to help.
If you can find the function that is sending the emails, you can likely add the `html_entity_decode()` to whatever is returned by that function.
I am guessing that your CSS is overriding your table border setting.
Something like this should work:
`if ( is_user_logged_in() ) {
global $current_user;
$username = $current_user->user_login;
echo ‘ | My Profile‘;
}`I wonder if your issue isn’t the “if ($users_can_register)” conditional. Are you able to get anything to show up within that conditional? For example:
`
if ($users_can_register) :
DOES THIS TEXT SHOW UP?
endif;
`If you want to edit the profile pages, the loop is in the “members” folder. Make sure to use a child theme or else upgrading will overwrite your changes.
@aaclayton – It sounds like you have/had a plugin or theme conflict of some sort, as SI Captcha should work out of the box. Good to hear you found a plugin that works.
Perhaps the `html_entity_decode()` function will help.
Which CAPTCHA plugins have you tried that have not worked?
Have you tried the following: https://wordpress.org/extend/plugins/si-captcha-for-wordpress/
@ryancharleston – Sounds good. Let me know what you learn!
@wpnewbie69 – Have you tried the troubleshooting steps I mentioned above?
You will need to edit your theme to pull this off.
Try googling the following: “display xprofile fields on member page buddypress”