-
Toby Cryns (@themightymo) replied to the forum topic xProfile required fields – 'select' default drop down in the group How-To and Troubleshooting 12 years ago
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: […]
-
Toby Cryns (@themightymo) replied to the forum topic Customize Groupe Home Page in the group Creating & Extending 12 years ago
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 […]
-
Toby Cryns (@themightymo) replied to the forum topic [REQUEST] Fix BuddyPress's Gravitational Orbit. in the group Requests & Feedback 12 years ago
@michaelecklund – This is an open-source, community-driven project. Please feel free to submit patches!
-
Toby Cryns (@themightymo) replied to the forum topic Notification email encoding issues in the group How-To and Troubleshooting 12 years ago
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. -
Toby Cryns (@themightymo) replied to the forum topic How to remove borders from tables in the group Requests & Feedback 12 years ago
I am guessing that your CSS is overriding your table border setting.
-
Toby Cryns (@themightymo) replied to the forum topic Unable to upload photos — "You have reached the upload limit, delete some pictures if you want to u in the group BuddyPress Media 12 years ago
Have you reached the disk space limit that your host allows?
-
Toby Cryns (@themightymo) replied to the topic [Resolved] Logged-In User Profile Link URL in the forum How-to & Troubleshooting 12 years ago
Something like this should work:
if ( is_user_logged_in() ) {
global $current_user;
$username = $current_user->user_login;
echo ‘ | <a href="http://soulwomansanctuary.com/community-members/ ' . $username . '/profile/">My Profile</a>‘;
} -
Toby Cryns (@themightymo) replied to the forum topic Logged-In User Profile Link URL in the group How-To and Troubleshooting 12 years ago
Something like this should work:
if ( is_user_logged_in() ) {
global $current_user;
$username = $current_user->user_login;
echo ' | <a href="http://soulwomansanctuary.com/community-members/ ' . $username . '/profile/">My Profile</a>';
} -
Toby Cryns (@themightymo) replied to the forum topic How to get buddypress registration in superslider-login plugin in the group How-To and Troubleshooting 12 years ago
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; -
Toby Cryns (@themightymo) replied to the forum topic Disply custom profile field on members page and on members profile page in the group How-To and Troubleshooting 12 years ago
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.
-
Toby Cryns (@themightymo) replied to the forum topic Filter User Registration Fields, Prevent Spambots in the group How-To and Troubleshooting 12 years ago
@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.
-
Toby Cryns (@themightymo) replied to the forum topic Notification email encoding issues in the group How-To and Troubleshooting 12 years ago
Perhaps the
html_entity_decode()
function will help. -
Toby Cryns (@themightymo) replied to the forum topic Filter User Registration Fields, Prevent Spambots in the group How-To and Troubleshooting 12 years ago
Which CAPTCHA plugins have you tried that have not worked?
Have you tried the following: https://wordpress.org/extend/plugins/si-captcha-for-wordpress/
-
Toby Cryns (@themightymo) replied to the forum topic Perpetually Loading Members and Groups Tabs on Side Widget in the group Requests & Feedback 12 years ago
@ryancharleston – Sounds good. Let me know what you learn!
-
Toby Cryns (@themightymo) replied to the forum topic Activation key is not being read so users can register after email is sent in the group How-To and Troubleshooting 12 years ago
@wpnewbie69 – Have you tried the troubleshooting steps I mentioned above?
-
Toby Cryns (@themightymo) replied to the forum topic Disply custom profile field on members page and on members profile page in the group How-To and Troubleshooting 12 years ago
You will need to edit your theme to pull this off.
Try googling the following: “display xprofile fields on member page buddypress”
-
Toby Cryns (@themightymo) replied to the forum topic Creating Links in the group How-To and Troubleshooting 12 years ago
I believe what you are looking for is in the bp-members-template.php fiile inside of “buddypress”->”bp-members”.
-
Toby Cryns (@themightymo) replied to the forum topic Activation key is not being read so users can register after email is sent in the group How-To and Troubleshooting 12 years ago
I would start troubleshooting this from the ground up as follows:
1) set up an exact copy of your site in a development environment (and preferably on the same server)
2) deactivate all plugins
3) switch to […] -
Toby Cryns (@themightymo) replied to the forum topic File attachments in the group Miscellaneous 12 years ago
@rickkumar – You are welcome!
-
Toby Cryns (@themightymo) replied to the forum topic How to prevent spaces in Username in the group How-To and Troubleshooting 12 years ago
You could write a front-end jQuery script that forces the behavior you want.
See this thread: http://stackoverflow.com/questions/2942325/jquery-form-validate-not-allow-space-for-username-field
- Load More
@themightymo
Active 6 days, 11 hours ago