-
Henry Wright replied to the topic Prohibit create groups with existing name in the forum How-to & Troubleshooting 9 years ago
Is it possible to do the same with Events? For example in Events Manager plugin?
I’m not familiar with the plugin but likely you can do the same sort of thing. Drop the plugin author the same question on their support forum. Hopefully they’ll get back to you with the info.
so should we use
bp_core_add_message
function to show the user an…
-
Henry Wright replied to the topic Bold in the forum How-to & Troubleshooting 9 years ago
It’ll only change these links:
#subnav ul li.current a
. If you want it to change all links within the subnav list items and not just the current one, you can do this:#subnav ul li a {
color: #e2e419;
font-weight: bold;
} -
Henry Wright replied to the topic Bold in the forum How-to & Troubleshooting 9 years ago
You could try:
#subnav ul li.current a {
color: #e2e419;
font-weight: bold;
}Ref: https://developer.mozilla.org/en/docs/Web/CSS/font-weight
-
Henry Wright replied to the topic Prohibit create groups with existing name in the forum How-to & Troubleshooting 9 years ago
Yes. You can use the
groups_group_before_save
hook to check if the name already exists. If so, set the name to and empty string. This will result in theBP_Groups_Group::save()
method returningfalse
, and no group being created. Note, you’ll probably also want to give the user some kind of useful message to tell them what’s happened. -
Henry Wright replied to the topic groups_get_group in blog 1 from group 2 in the forum How-to & Troubleshooting 9 years ago
There are a number of ways to install BuddyPress in your network. Can you describe your set up?
See the Installation in WordPress Multisite article for more info.
-
Henry Wright replied to the topic Unable to log in in the forum Installing BuddyPress 9 years ago
Which WordPress forum are you referring to? Can you give a link?
-
Henry Wright replied to the topic NEW! Buddy Member Stats & BuddyPress Community Stats in the forum Third Party Plugins 9 years ago
yep, both are currently pending review on wp’s repo
+1 for submitting to the Plugin Directory! Makes them far easier for users to find. 🙂
-
Henry Wright replied to the topic BuddyPress Login in the forum How-to & Troubleshooting 9 years ago
-
Henry Wright replied to the topic Page load in the forum How-to & Troubleshooting 9 years, 1 month ago
Try the BP Local Avatars plugin.
-
Henry Wright replied to the topic New custom tab only visible by account owner in the forum How-to & Troubleshooting 9 years, 1 month ago
You need to pass a value of
false
forshow_for_displayed_user
to thebp_core_new_nav_item()
function. -
Henry Wright replied to the topic CSS for Registration Form in the forum How-to & Troubleshooting 9 years, 1 month ago
Unfortunately, this code did not work at all 🙁
Likely you’ll need to change the selector
#buddypress .standard-form div.radio div label
so that it’s appropriate for the theme you’re using. -
Henry Wright replied to the topic BuddyPress Profile Updation in the forum Requests & Feedback 9 years, 1 month ago
Can you describe the steps you took? Also provide any error messages you got along the way. We also need details of your environment (see When Asking for Support).
-
Henry Wright replied to the topic Buddypress as an Intranet in the forum How-to & Troubleshooting 9 years, 1 month ago
@travis_98 if you do get this working, I’d be interested in hearing about the steps you took. If you could post here that would be great 🙂
-
Henry Wright replied to the topic Sending Form Data to Activity Stream in the forum How-to & Troubleshooting 9 years, 1 month ago
You can add items to the activity stream with
bp_activity_add()
. You could use your form values to build thecontent
argument.Ref: https://codex.buddypress.org/developer/function-examples/bp_activity_add/
-
Henry Wright replied to the topic Error Logs with BuddyPress in the forum How-to & Troubleshooting 9 years, 1 month ago
I’ve recently installed Buddypress to my WP theme
Can you explain exactly the steps you took?
-
Henry Wright replied to the topic Welcome e-mail in the forum How-to & Troubleshooting 9 years, 1 month ago
You could try Paul’s Welcome Pack plugin. It’s listed as not been updated in 2 years but it should still work.
-
Henry Wright replied to the topic Is Buddypress' "Username" field mandatory? in the forum How-to & Troubleshooting 9 years, 1 month ago
Which theme is that? BuddyPress doesn’t ask for 2 usernames. The WordPress username and the BuddyPress username are one and the same. It looks as though your theme is asking for it twice
-
Henry Wright replied to the topic Activity stream font size in the forum Installing BuddyPress 9 years, 1 month ago
-
Henry Wright replied to the topic Like Button in the forum Third Party Plugins 9 years, 1 month ago
You should report the problem you’re having on the plugin’s GitHub repo and hopefully they’ll be able to issue a fix.
-
Henry Wright replied to the topic How to trigger hooks on member profile update? in the forum Creating & Extending 9 years, 1 month ago
I put this die because there is redirect after this action.
Right! If you don’t want the redirect then that’s one way to stop it 🙂
- Load More
@henrywright
Active 8 months, 1 week ago