-
Henry Wright replied to the topic Add "Anonymous" to menu bar in the forum Installing BuddyPress 7 years, 12 months ago
You can use the
is_user_logged_in()
function to check. For exampleif ( is_user_logged_in() ) {
// This user isn't logged in.
echo 'Anon';
} else {
// This user is logged in.
// Do something else.
} -
Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 7 years, 12 months ago
The .mo file should go in this folder wp-content/languages/plugins
The wp-content folder won’t get overwritten. That’s where all of your content is kept.
-
Henry Wright replied to the topic Dynamic Link in the forum Installing BuddyPress 7 years, 12 months ago
-
Henry Wright replied to the topic How to edit title on page in buddypress activate template in the forum How-to & Troubleshooting 7 years, 12 months ago
@venutius is right; a .mo file is the way to go. Check out this article which should help get you started:
-
Henry Wright replied to the topic bp_ajax_querystring filter not runing in the forum How-to & Troubleshooting 7 years, 12 months ago
Inside your plugin try adding:
add_action( 'init', function() {
add_filter( 'bp_ajax_querystring', 'your_function', 10, 2 );
}Of course, also define your function:
function your_function( $ajax_querystring, $object ) {
// Code here.
return $ajax_querystring;
} -
Henry Wright replied to the topic Buddypress from mobile in the forum Installing BuddyPress 7 years, 12 months ago
You will need to have an understanding of CSS. To get started, take a look here
https://developer.mozilla.org/en-US/docs/Web/CSS
It’s a very useful reference; I’ve had it bookmarked for a while now.
-
Henry Wright replied to the topic How to Add BuddyPress Specific Widgets in the forum Showcase 7 years, 12 months ago
Hi David
I’ve moved this topic to Your BuddyPress.
-
Henry Wright replied to the topic how to change @ mention name in the forum Installing BuddyPress 7 years, 12 months ago
BuddyPress doesn’t let you change username but there are plugins available that will let you do that.
-
Henry Wright replied to the topic bp_ajax_querystring filter not runing in the forum How-to & Troubleshooting 8 years ago
Out of interest can we see your
my_function()
definition? -
Henry Wright replied to the topic Read Only Group? in the forum How-to & Troubleshooting 8 years ago
You could open a feature request ticket on Trac. The core team would consider it I’m sure.
-
Henry Wright replied to the topic Can't upload profile images in Internet Explorer in the forum How-to & Troubleshooting 8 years ago
Can you open a ticket on BuddyPress Trac? Please include as much detail about the problem as possible.
-
Henry Wright replied to the topic Read Only Group? in the forum How-to & Troubleshooting 8 years ago
I can’t figure out if this is possible or where to start if custom coding is needed.
I think custom coding will be needed here as I’m not aware of a setting or plugin that’ll let you do that.
Maybe somebody else here might know of something?
-
Henry Wright replied to the topic Can't upload profile images in Internet Explorer in the forum How-to & Troubleshooting 8 years ago
Do you know which version of IE they are using? Early versions are rather troublesome. 9.0+ is better supported
-
Henry Wright replied to the topic uploading avatar or cover photo hangs site! help! in the forum How-to & Troubleshooting 8 years ago
Maybe 256M is more than your server can handle? try something like 128M.
It has to be Buddypress…
Maybe, but it is working for me so it’s more likely related to your set up.
-
Henry Wright replied to the topic Error 404 for non logged in users in the forum How-to & Troubleshooting 8 years ago
Hi all
As @danbp mentioned, if you haven’t done so already, please open a bug report for this on Trac if you believe there to be an issue. That way it’ll get investigated by the core team.
-
Henry Wright replied to the topic uploading avatar or cover photo hangs site! help! in the forum How-to & Troubleshooting 8 years ago
Try increasing your memory. Ref
https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
-
Henry Wright replied to the topic Tweak registration confirmation text after submission in the forum Installing BuddyPress 8 years ago
The path should be /my-theme/buddypress/members/activate.php
-
Henry Wright replied to the topic Tweak registration confirmation text after submission in the forum Installing BuddyPress 8 years ago
You’ll find that text in the bp-templates/bp-legacy/buddypress/members/register.php template.
This article will help too 🙂
-
Henry Wright replied to the topic uploading avatar or cover photo hangs site! help! in the forum How-to & Troubleshooting 8 years ago
Hi @zoldos9
Do you have anything in your error logs?
-
Henry Wright replied to the topic How to Hide subnav Tabs in the forum How-to & Troubleshooting 8 years ago
bp_core_remove_subnav_item()
can be used to delete an item from the secondary navigation.For example:
bp_core_remove_subnav_item( BP_SETTINGS_SLUG, 'some-slug' );
- Load More
@henrywright
Active 8 months, 1 week ago