-
Henry Wright replied to the topic Odd Characters in Emails in the forum Installing BuddyPress 7 years, 9 months ago
Hey @kdannay
Is BuddyPress actually sending
–
or is the problem at your client’s end? i.e. your client’s email client can’t display the–
character properly? -
Henry Wright replied to the topic Error upgrading to 2.8.x in the forum How-to & Troubleshooting 7 years, 9 months ago
I just spoke with Boone, he suggested a reinstall of BuddyPress is needed because it looks as though your upgrade didn’t complete properly. bp-core-functions.php shouldn’t contain a reference to the
BP_Core_Sort_By_Key_Callback
class because the class was removed in 2.8.0. -
Henry Wright replied to the topic Error upgrading to 2.8.x in the forum How-to & Troubleshooting 7 years, 9 months ago
The file (and class) exists in 2.7.4 but not in 2.8.0. I’ll ask over at Slack and report back.
-
Henry Wright replied to the topic Bypass Email Requirement in the forum Creating & Extending 7 years, 9 months ago
Note email addresses are used for password management (resetting a lost password for example). If members use dummy email addresses they risk being locked out of the site if they forget their password.
-
Henry Wright replied to the topic create xprofile fields from plugin in the forum How-to & Troubleshooting 7 years, 9 months ago
I believe
xprofile_insert_field()
will insert or update a profile field. Here’s an example of how to use it:$f = xprofile_insert_field( array(
[Read more]
'field_group_id' => 8,
'type' => 'textbox',
'name' => 'Foo',
'is_required' => false,
'can_delete' => false,
'description' => 'This is a… -
Henry Wright replied to the topic BuddyPress Activity ShortCode Plugin in the forum How-to & Troubleshooting 7 years, 9 months ago
You should try asking on the plugin’s support forum. Hopefully the author will be able to help.
-
Henry Wright replied to the topic buddypress slow for logged-in users in the forum How-to & Troubleshooting 7 years, 9 months ago
Try using Twenty Fifteen and disabling all plugins. It’s either a plugin or your theme that’s slowing things down. Once you find the culprit you can try opening a support ticket with the theme or plugin author.
-
Henry Wright replied to the topic Navigation API – Default Slug? in the forum Creating & Extending 7 years, 9 months ago
Check out this article:
-
Henry Wright replied to the topic Having Extended Profiles Fields in New User Registration Admin Email in the forum How-to & Troubleshooting 7 years, 9 months ago
I believe the
wp_new_user_notification()
function is what you’re looking for. It’s pluggable so you can define your own which will override the original definition:function wp_new_user_notification( $user_id, $deprecated = null, $notify = '' ) {
[Read more]
// Your own code here. Copy and paste the original function's content and then modify if you… -
Henry Wright replied to the topic White Screen of Death after Activation in the forum Installing BuddyPress 7 years, 9 months ago
Do you have any plugins running aside from BuddyPress? If so, do you get the fatal error when activating BuddyPress (with the rest of the plugins deactivated)?
-
Henry Wright replied to the topic Echo slug of custom nav component in the forum Creating & Extending 7 years, 9 months ago
Using the
buddypress()
function avoids the need to declare a global. Try to avoid globals in your code if you can. -
Henry Wright replied to the topic Echo slug of custom nav component in the forum Creating & Extending 7 years, 9 months ago
I’m not aware of a function. Anyone else here know of one?
You should be able to avoid the global by doing this:
echo buddypress()->bp_nav['foo']['link'];
-
Henry Wright replied to the topic Echo slug of custom nav component in the forum Creating & Extending 7 years, 9 months ago
Try
buddypress()->foo->slug
wherefoo
is the name of your item. If this doesn’t work then “foo” may need to be a component. -
Henry Wright replied to the topic Echo slug of custom nav component in the forum Creating & Extending 7 years, 9 months ago
You can define the slug when you call the
bp_core_new_nav_item()
function. For example:// Define slug in args array.
$args = array(
'slug' => 'foo'
);
bp_core_new_nav_item( $args ); -
Henry Wright replied to the topic Is there a way to modify the output of bp_activity_content_body() in the forum Creating & Extending 7 years, 9 months ago
Hey!
You can use the
bp_get_activity_content_body
hook to filter that function’s output. -
Henry Wright replied to the topic Saving component change in the forum How-to & Troubleshooting 7 years, 9 months ago
You did the right thing informing WP Time Capsule as this is likely to be related to that plugin. Hopefully they’ll be able to resolve the issue.
-
Henry Wright replied to the topic Prevent Fields from Showing in Profile Loop with Conditional Logic? in the forum How-to & Troubleshooting 7 years, 10 months ago
You can add a condition inside your template. For example:
// Get $value here.
// Check if $value is Yes.
if ( 'Yes' === $value ) {
// Output
} -
Henry Wright replied to the topic Avatar Images to grey scale in the forum How-to & Troubleshooting 7 years, 10 months ago
Are you getting anything in your error log?
-
Henry Wright replied to the topic Buddypress plugin leads to 508 error..Whatto do in the forum How-to & Troubleshooting 7 years, 10 months ago
A 508 error usually means your website is hitting a resource limit set by your hosting company. This could be either CPU usage or maybe RAM. Try contacting your host to see if the limit can be adjusted.
-
Henry Wright replied to the topic Email notification in the forum How-to & Troubleshooting 7 years, 10 months ago
Crowdmentions will web notify members of a group if a @ keyword is used in the update’s text. However, emails aren’t sent for various reasons.
Disclaimer: I’m the plugin author.
- Load More
@henrywright
Active 8 months, 1 week ago