-
Henry Wright replied to the topic explode function in the forum Ideas 7 years, 2 months ago
@petervandoorn almost but
bp_member_profile_data()
will output. Instead, you’ll need to use a function which returns a value before passing it toexplode()
. That’ll bebp_get_member_profile_data()
-
Henry Wright replied to the topic registration page styling in the forum How-to & Troubleshooting 7 years, 2 months ago
Try posting your requirements on the BP Jobs Board. There might be a developer there who’ll help you.
-
Henry Wright replied to the topic registration page styling in the forum How-to & Troubleshooting 7 years, 2 months ago
The whole freakin Plugin needs a UI & layout makeover. It’s 2017, looks like crap vs today’s UI/UX standards.
Try to think of BuddyPress as a foundation for your theme to style. If your site looks as bad as you describe then consider switching theme. You mentioned @buddyboss, they build some great themes that might interest you.
-
Henry Wright replied to the topic how to hook after promote and demote user in the forum How-to & Troubleshooting 7 years, 2 months ago
The best thing to do in this case is take a look through the code:
-
Henry Wright replied to the topic remove buddymobile in the forum Installing BuddyPress 7 years, 2 months ago
Try asking this question on the plugin’s support page:
-
Henry Wright replied to the topic bp-custom.php in folder? in the forum How-to & Troubleshooting 7 years, 2 months ago
How are you trying to delete the buddypress folder?
-
Henry Wright replied to the topic bp-custom.php in folder? in the forum How-to & Troubleshooting 7 years, 2 months ago
You shouldn’t modify the original plugin files.
-
Henry Wright replied to the topic bp-custom.php in folder? in the forum How-to & Troubleshooting 7 years, 2 months ago
You can find all of the templates in a buddypress folder here: bp-templates/bp-legacy.
Step 1. Copy the buddypress folder to your theme. You should then have something that looks like this: wp-content/themes/your-theme/buddypress
Step 2. Edit the files inside the buddypress folder. -
Henry Wright replied to the topic bp-custom.php in folder? in the forum How-to & Troubleshooting 7 years, 2 months ago
Which template are you referring to in 1.?
Check out the Template Hierarchy article. The file you’d need to copy and then modify is buddypress/members/members-loop.php.
can both code snippets be placed either in functions.php or bp-custom.php?
2 can but 1 isn’t a code snippet (you’re copying and then modifying a file).
-
Henry Wright replied to the topic bp-custom.php in folder? in the forum How-to & Troubleshooting 7 years, 2 months ago
The file path should be wp-content/plugins/bp-custom.php. If that doesn’t work for you then there’s likely a problem elsewhere.
-
Henry Wright replied to the topic Registration page not working in mobile devices in the forum Requests & Feedback 7 years, 2 months ago
This is very likely to be theme-related. I notice you’re using the Niche theme. Try contacting the theme author to let them know there’s an issue.
-
Henry Wright replied to the topic Activity Update Issue in the forum Installing BuddyPress 7 years, 2 months ago
Can you show us a screenshot of where you’re seeing this?
-
Henry Wright replied to the topic Why I can't even remove confirm password? in the forum How-to & Troubleshooting 7 years, 2 months ago
There’s 2 parts to the registration form. The form markup and the processing script. You can’t remove the signup_password_confirm form field because the processing script will be expecting it.
-
Henry Wright replied to the topic registration page styling in the forum How-to & Troubleshooting 7 years, 2 months ago
You can edit the layout of the registration page. buddypress/members/index-register.php is the template you’ll need to edit. See the Template Hierarchy article for more information.
-
Henry Wright replied to the topic bp groups loop signs out user?! in the forum How-to & Troubleshooting 7 years, 3 months ago
Try running this using something like Twenty Fifteen with all plugins deactivated. My guess is your code works but something else is conflicting.
-
Henry Wright replied to the topic error after message customization on activate.php in the forum How-to & Troubleshooting 7 years, 3 months ago
The following code won’t cause the parse error:
<p><?php printf(
__( 'Your account was activated successfully! You can now log in on the sidebar with the username and password you provided when you signed up.', 'your-theme-domain' ),
wp_login_url( bp_get_root_domain() )
); ?></p>Parse error: syntax error, unexpected ‘else’ (T_ELSE) in…
-
Henry Wright replied to the topic registration page styling in the forum How-to & Troubleshooting 7 years, 3 months ago
You should use your theme’s style.css document. Editing core files isn’t recommended.
-
Henry Wright replied to the topic How do I show woocommerce activities in Buddypress activity? in the forum Creating & Extending 7 years, 3 months ago
You can add items to the activity stream using
bp_activity_add()
.See here https://codex.buddypress.org/developer/function-examples/bp_activity_add/
-
Henry Wright replied to the topic Disabling Toolbar in the forum How-to & Troubleshooting 7 years, 3 months ago
Found a solution, using BuddyMenu. 4 years without an update but seems to be working fine.
Glad you got this working 🙂
-
Henry Wright replied to the topic are there potential issues with completely dequeuing legacy CSS? in the forum Creating & Extending 7 years, 3 months ago
The
screen-reader-text
accessibility class is something that all themes should have I agree. You’ll likely find some RTL styles that are worth keeping also. - Load More
@henrywright
Active 8 months, 1 week ago