-
Henry Wright replied to the topic thumb and full avatars are the same size -_- in the forum How-to & Troubleshooting 9 years, 3 months ago
Your theme might be Customizing BuddyPress Avatars?
-
Henry Wright replied to the topic Create Function When Favorite Button Clicked in the forum How-to & Troubleshooting 9 years, 3 months ago
You’d need to use Ajax. Take a look at the Ajax in Plugins article for more info.
-
Henry Wright replied to the topic How to change the "Members" color in members page in the forum How-to & Troubleshooting 9 years, 3 months ago
How are you linking your style sheet? Make sure you’re using
wp_enqueue_style()
.Ref: https://codex.wordpress.org/Function_Reference/wp_enqueue_style
-
Henry Wright replied to the topic bp_loggedin_user_id() is always 0 in the forum How-to & Troubleshooting 9 years, 3 months ago
You can use
add_action()
anywhere. Whether or not it executes the functions attached to it is another question. Take theadd_action()
inside your function for example. It’ll only executecustom_bp_subnav()
on the condition that$loggedin == $displayed
. Also thebp_ready
hook must be running. -
Henry Wright replied to the topic Best CRM + online marketing sytem in the forum Installing BuddyPress 9 years, 3 months ago
You could use WordPress as your CRM. There are quite a few plugins in the repo for that purpose. My advice is to set up a test install, try them out and see which one works best for you.
-
Henry Wright replied to the topic Assign a user another user to talk to and they can only talk to that person. in the forum How-to & Troubleshooting 9 years, 3 months ago
You will need to go through all of the BuddyPress communication channels available:
1. Private messaging
2. Public messagingetc
Then when a user attempts to send a message to a user they have not been assigned to, disallow it to happen via one of the hooks BuddyPress makes available.
With reference to assigning a user to a user, this could be…[Read more]
-
Henry Wright replied to the topic bp-custom.php causes category problem in the forum How-to & Troubleshooting 9 years, 3 months ago
I use a bp-custom.php file in the plugin folder
Do you mean like this
plugins/buddypress/bp-custom.php
?If so, that’s the wrong place. It should be here:
plugins/bp-custom.php
-
Henry Wright replied to the topic Chart in Profile in the forum Creating & Extending 9 years, 3 months ago
You could use a server side library such as PHP GD to generate the chart from database data.
-
Henry Wright replied to the topic Checkbox enabled by default Alternative Public Group Control plugin in the forum Ideas 9 years, 3 months ago
You could open an issue and ask that question here.
-
Henry Wright replied to the topic Is it possible? in the forum Miscellaneous 9 years, 3 months ago
1. Which forum are you using? If you migrated your forum content to bbPress, you’d have one login shared across both your forum and your (WordPress) website. Is that an option you’d consider?
-
Henry Wright replied to the topic WMT show increase of 404 errors. where are they coming from? in the forum How-to & Troubleshooting 9 years, 3 months ago
I’m not sure but perhaps it’s related to the private messaging component? I know those URLs look like /members/username/messages/etc..
-
Henry Wright replied to the topic how to check if the length of field is too long? in the forum How-to & Troubleshooting 9 years, 3 months ago
Yes, I think you can. Try this:
function my_username_validation() {
if ( strlen( $_POST['signup_username'] ) > 16 ) {
global $bp;
$bp->signup->errors['signup_username'] = __( 'Put your error message here.', 'buddypress' );
}
}
add_action( 'bp_signup_validate', 'my_username_validation'… -
Henry Wright replied to the topic WMT show increase of 404 errors. where are they coming from? in the forum How-to & Troubleshooting 9 years, 3 months ago
You could configure your robots.txt to exclude the /messages/ directory:
User-agent: *
Disallow: /messages/With time, Googlebot should stop hitting that area of your website and the 404 errors will disappear?
-
Henry Wright replied to the topic restrict friend requests in the forum How-to & Troubleshooting 9 years, 3 months ago
Have you tried the BuddyPress Limit Friendship plugin?
-
Henry Wright replied to the topic how to check if the length of field is too long? in the forum How-to & Troubleshooting 9 years, 3 months ago
You will need to make use of hooks and the strlen() function.
For example, at registration, in order to validate the username so that it isn’t longer than 16 characters, you can do this:
function my_username_validation() {
[Read more]
// Perform validation here using the strlen() function to check the field length.
}
add_action( 'bp_signup_validate',… -
Henry Wright replied to the topic Private Message Pagination in the forum How-to & Troubleshooting 9 years, 3 months ago
@danbp I needed your answer 1 year 6 months ago π
-
Henry Wright replied to the topic [Resolved] Problem with duplicate content in the forum How-to & Troubleshooting 9 years, 3 months ago
Great π
-
Henry Wright replied to the topic Users canβt reply to private messages in the forum How-to & Troubleshooting 9 years, 3 months ago
If you don’t see the problem with TwentyFifteen activated, the problem is likely to be theme-related and, One Community being a premium theme, none of us here can see the theme’s code. Try opening a support ticket on the theme’s support forum.
-
Henry Wright replied to the topic [Resolved] Problem with duplicate content in the forum How-to & Troubleshooting 9 years, 3 months ago
This could be theme-related. Which theme are you using?
-
Henry Wright replied to the topic Allow guests (non-registered) visitors to post in acivity page in the forum Creating & Extending 9 years, 3 months ago
In order to be able to post, you need a user ID. Unauthenticated users have ID 0 so you could build something based on that but I know of nothing that’s available currently.
- Load More
@henrywright
Active 8 months, 2 weeks ago