-
Henry Wright replied to the topic $bp class type for autocomplete? in the forum Creating & Extending 9 years, 6 months ago
I haven’t checked but am 99% sure
$bp
is typeBuddyPress
. Take a look at the project source to verify: -
Henry Wright replied to the topic $bp class type for autocomplete? in the forum Creating & Extending 9 years, 6 months ago
I haven’t checked but am 99% sure
$bp
is of typeBuddyPress
. Take a look at the project source code to verify: -
Henry Wright replied to the topic $bp class type for autocomplete? in the forum Creating & Extending 9 years, 6 months ago
You can add whatever data you like to the BP global but regarding autosuggest and your IDE, I’m not sure
-
Henry Wright replied to the topic wp-login.php Login form page in the forum How-to & Troubleshooting 9 years, 6 months ago
Try the Theme My Login plugin.
-
Henry Wright replied to the topic My search page returns to the activity page in the forum How-to & Troubleshooting 9 years, 6 months ago
This is a theme-related question. Further to @danbp‘s suggestions, try contacting the theme author for support.
-
Henry Wright replied to the topic My search page returns to the activity page in the forum How-to & Troubleshooting 9 years, 6 months ago
This is a theme-related. Further to @danbp‘s suggestions, try contacting the theme author for support.
-
Henry Wright replied to the topic Change buddypress text content in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @brelixadmin
Would you be using the groups widget by any chance? I’m guessing that is where the “error” is coming from. @danbp‘s suggested link should do the trick.
-
Henry Wright replied to the topic Messages break theme in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @holmey1
To test whether this is a BuddyPress problem or theme problem, you should switch to TwentyFifteen and deactivate all plugins. If the problem resolves then it is likely related to either a) your theme or b) one of the plugins you deactivated.
-
Henry Wright replied to the topic Change your password in settings in the forum Ideas 9 years, 6 months ago
Hi @jessicana
I thought that applied to admin users only? If you log in as a subscriber and try, are you asked for your current password?
-
Henry Wright replied to the topic Issues importing tables between sites using phpmyadmin in the forum How-to & Troubleshooting 9 years, 6 months ago
There may well be a solution for this in the WordPress or BuddyPress community, but what I’m saying is it’s far more likely that you’ll find the solution in a phpMyAdmin or MySQL community. So don’t give up here, but be aware you have options if you don’t get a response.
-
Henry Wright replied to the topic [Resolved] add posts numbers in members directory in the forum How-to & Troubleshooting 9 years, 6 months ago
Try
echo count_user_posts( bp_get_member_user_id() );
-
Henry Wright replied to the topic [Resolved] add posts numbers in members directory in the forum How-to & Troubleshooting 9 years, 6 months ago
Try
echo count_user_posts( bp_get_member_id() );
-
Henry Wright replied to the topic Restrict Non-logged in user to post on group forums in the forum How-to & Troubleshooting 9 years, 6 months ago
Great stuff 🙂
-
Henry Wright replied to the topic Restrict Non-logged in user to post on group forums in the forum How-to & Troubleshooting 9 years, 6 months ago
Customisations are usually the problem. The only way of pinpointing the issue is trial-and-error. For example, remove all custom code you’ve added, then add in one item of functionality at a time, testing your website as you go along. You’ll then find the offending bit of code that has introduced the problem.
-
Henry Wright replied to the topic Issues importing tables between sites using phpmyadmin in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @prabin04
I have done, but this topic is about importing tables using phpMyAdmin so let us keep the conversation here focused on that 🙂
-
Henry Wright replied to the topic Restrict Non-logged in user to post on group forums in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @prabin04
Do you get this problem with all plugins disabled and TwentyFifteen activated? I’m surprised you’re able to post on the group forum whilst not logged-in. That doesn’t sound right to me.
-
Henry Wright replied to the topic Issues importing tables between sites using phpmyadmin in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @marvc
Whilst I can’t offer any help myself in this instance, the actual table you’re importing is irrelevant so both the WordPress and BuddyPress support forums might not be the best place to look to get help. Instead, perhaps try a phpMyAdmin or MySQL support forum. Hopefully they’ll be more help.
-
Henry Wright replied to the topic How to make buddypress member profiles private for everyone in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @jaykdoe
You could try this:
function my_private_profiles() {
// Bail if not a profile page.
if ( ! bp_is_user_profile() )
return;// Allow admin users.
if ( current_user_can( 'manage_options' ) )
return;// Allow the profile owner.
if ( bp_loggedin_user_id() == bp_displayed_user_id() )…[Read more] -
Henry Wright replied to the topic Theme in Development: Preview & Feedback? in the forum Showcase 9 years, 6 months ago
Yep, new BP themes when released are very much welcome in my view (that goes for both free and premium)!
- Load More
@henrywright
Active 8 months, 2 weeks ago