-
Henry Wright replied to the topic Stylizing the Register page in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @dwsowash
You can create a child theme and then add your custom CSS to your child theme’s style.css file. Check out this article on Child Themes to get you started.
-
Henry Wright replied to the topic Registration Page Problems in the forum Creating & Extending 11 years, 3 months ago
Can you try doing some tests with the Twenty Fourteen theme to see if the problem still happens?
-
Henry Wright replied to the topic [Resolved] Can we remove specific items Item Nav on profile in the forum How-to & Troubleshooting 11 years, 3 months ago
You can use
bp_core_remove_nav_item( $parent_id )to remove items from the navigation array.$parent_idis the slug of the parent navigation item. So, for example:function my_nav_item_removal_function() {
bp_core_remove_nav_item( 'friends' );
}
add_action( 'init', 'my_nav_item_removal_function' ); -
Henry Wright replied to the topic [Resolved] Can we remove specific items Item Nav on profile in the forum How-to & Troubleshooting 11 years, 3 months ago
You can use
bp_core_remove_nav_item( $parent_id )to remove items from the navigation array.$parent_idis the slug of the parent navigation item. So, for example:function my_nav_item_removal_function() {
bp_core_remove_nav_item( 'friends' )
}
add_action( 'init', 'my_nav_item_removal_function' ); -
Henry Wright replied to the topic Hiding the BuddyPress menu on specific BP pages in the forum How-to & Troubleshooting 11 years, 3 months ago
I’m using the
bp_nav_menu_argsfilter hook to modify the args sent tobp_nav_menu(). The code assumes you’re usingbp_nav_menu()to display your navigation menu. By changing the value of$args['echo']tofalse, a string containing the nav menu markup is returned (i.e. not echo’d to screen).The 2nd line is just a conditional to govern which…[Read more]
-
Henry Wright replied to the topic Hiding the BuddyPress menu on specific BP pages in the forum How-to & Troubleshooting 11 years, 3 months ago
I’m using the
bp_nav_menu_argsfilter hook to modify the args sent tobp_nav_menu(). The code assumes you’re usingbp_nav_menu()to display your navigation menu. By changing the value of$args['echo']tofalse, a string containing the nav menu markup is returned (i.e. not echo’d to screen).The 2nd line is just a conditional to govern which…[Read more]
-
Henry Wright replied to the topic Hiding the BuddyPress menu on specific BP pages in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @tomatillo
It’s definitely possible. Actually, there’s probably many ways to do it.
Try adding this to your theme’s functions.php file:
function my_custom_bp_nav_menu( $args ) {
if ( bp_is_current_action( 'following' ) || bp_is_current_action( 'followers' ) )
$args['echo'] = false;return $args;
}
add_filter(…[Read more] -
Henry Wright replied to the topic Username Dropdown List in the forum How-to & Troubleshooting 11 years, 3 months ago
-
Henry Wright replied to the topic [Resolved] PHP for BuddyPress pages? in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @tomatillo
Try bp_current_action( ‘following’ ) and bp_current_action( ‘followers’ )Edit: I actually meant use
bp_is_current_action()sobp_is_current_action( 'following' )andbp_is_current_action( 'followers' ) -
Henry Wright replied to the topic [Resolved] PHP for BuddyPress pages? in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @tomatillo
Trybp_current_action( 'following' )andbp_current_action( 'followers' )Edit: I actually meant use
bp_is_current_action()sobp_is_current_action( 'following' )andbp_is_current_action( 'followers' ) -
Henry Wright replied to the topic [Resolved] PHP for BuddyPress pages? in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @tomatillo
Try
bp_current_action( 'following' )andbp_current_action( 'followers' ) -
Henry Wright replied to the topic Setup members and groups in the forum How-to & Troubleshooting 11 years, 3 months ago
Check out the links on the left-hand side of the Getting Started page.
It’s the best place to start when learning BuddyPress. Good luck!
-
Henry Wright replied to the topic FYI: iOS 8 and changing avatars in the forum Miscellaneous 11 years, 3 months ago
For some strange reason it’s working today (in Chrome). Wasn’t working all day yesterday (in Chrome). I haven’t made any changes to my phone aside from installing the Firefox and Dolphin browsers from the Play store.
I’m not complaining though š
-
Henry Wright replied to the topic Username Dropdown List in the forum How-to & Troubleshooting 11 years, 3 months ago
Ah sorry, by PM I thought you may have been referring to public messaging (also known as @-mentions). Auto-complete should work on the private messaging compose screen too. Have you tested?
-
Henry Wright replied to the topic Users Profile Image and Registration Form in the forum How-to & Troubleshooting 11 years, 3 months ago
Perhaps use http://imgur.com/ to upload a screenshot. Which plugins do you have installed?
-
Henry Wright replied to the topic Users Profile Image and Registration Form in the forum How-to & Troubleshooting 11 years, 3 months ago
What’s DoppelMeā¢?
-
Henry Wright replied to the topic Users Profile Image and Registration Form in the forum How-to & Troubleshooting 11 years, 3 months ago
What’s DoppelMeā¢?
-
Henry Wright replied to the topic Username Dropdown List in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @barchiola
The @-mentions interface has been recently improved actually. Check out the BuddyPress 2.1 “Patsy” blog post for more info on the revamp.
-
Henry Wright replied to the topic Username Dropdown List in the forum How-to & Troubleshooting 11 years, 3 months ago
Hi @barchiola
The @-mentions functionality has been recently improved actually. Check out the BuddyPress 2.1 “Patsy” blog post for more info on the revamped interface.
-
Henry Wright replied to the topic FYI: iOS 8 and changing avatars in the forum Miscellaneous 11 years, 3 months ago
@modemlooper do you have any more info on the bug? I seem to be having the problem on my Samsung 4 Mini running Android 4.2.2
- Load More
@henrywright
Active 1 year, 10 months ago