-
Slava Abakumov replied to the topic Creating a welcome page in the forum How-to & Troubleshooting 8 years, 10 months ago
It’s nothing to do here with BuddyPress. Go to your membership plugin forum and ask there – they better know that plugin API and conditionals.
-
Slava Abakumov replied to the topic NOTHING FOUND FOR MEMBERS in the forum Installing BuddyPress 8 years, 10 months ago
Check in
wp-admin
area yourSettings -> BuddyPress -> Pages
settings. All directories components should be associated with WP pages. WP pages should be published. -
Slava Abakumov replied to the topic Need some help with registration page in the forum Installing BuddyPress 8 years, 10 months ago
The problem is with your theme.
The quickest fix is this:function the7_bp_register_fix(){
echo '<div style="clear:both"></div>';
}add_action('bp_custom_signup_steps', 'the7_bp_register_fix', 999999);
Place this code into either bp-custom.php or functions.php of your (child) theme.
Ideally – contact your theme author and ask him/her/them…[Read more]
-
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
Don’t know what’s going on on your install.
I have teamviewer, but I don’t have time to investigate your problem further. -
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
My css code should work. Perhaps you placed it in a wrong place.
Try removing this line
<h5 class="accordion-title <?php bp_the_profile_group_slug(); ?>"><?php bp_the_profile_group_name(); ?><span class="accordion-icon"></span></h5>
fromprofile-loop.php
file. -
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
What’s the content of your theme
/members/single/profile.php
file? -
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
Try
#buddypress .profile h5{display:none !important}
-
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
What’s the content of your theme
/members/single/profile/profile-loop.php
file? -
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
into
style.css
of your theme. Also try this:
#buddypress .profile h4{display:none !important}
-
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
You have
/members
directory.
/wp-content/themes/[your-theme]/members/single/profile/profile-loop.php
and
/wp-content/themes/[your-theme]/members/index.php
Have you tried CSS solution?
-
Slava Abakumov replied to the topic My website built in buddy press, free sound effects library in the forum Showcase 8 years, 10 months ago
And what’s wrong with it?
-
Slava Abakumov's profile was updated 8 years, 10 months ago
-
Slava Abakumov replied to the topic My website built in buddy press, free sound effects library in the forum Showcase 8 years, 10 months ago
Hi, nice one!
Would you like to participate in a small plugin testing? It’s about search inside BuddyPress (groups, members, forums). This plugin will display you info who searches for what and where (in your case mainly members searching other members on Members directory page, as you have only 2 groups and no forum). BP Search won’t break…[Read more]
-
Slava Abakumov replied to the topic Cannot create groups in the forum How-to & Troubleshooting 8 years, 10 months ago
There can be some plugins that make this happen. Try deactivating all of them (except BuddyPress) one by one to see which might cause it.
You could have written some code inbp-custom.php
file or in your theme’sfunctions.php
– check those files as well.Also, groups can’t be added to forums – they are different components. Although groups can…[Read more]
-
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
OR
You can add these styles to your theme css file:
#members-all{display:none}
#buddypress .profile h4{display:none} -
Slava Abakumov replied to the topic Hide or delete tab Profile ( Base) in the forum How-to & Troubleshooting 8 years, 10 months ago
“Tab Base”
To delete
Base
and all other fields groups names in user profile:
1. find in your theme file/buddypress/members/single/profile/profile-loop.php
2. Delete in that file: this line:<h4><?php bp_the_profile_group_name(); ?></h4>
If you don’t have such file in your theme, than copy this file:…[Read more]
-
Slava Abakumov replied to the topic Textarea Profile Field? in the forum How-to & Troubleshooting 8 years, 10 months ago
if ( $field_id == 22 ) {
of course. Shame on me.Glad it works for you.
-
Slava Abakumov replied to the topic Textarea Profile Field? in the forum How-to & Troubleshooting 8 years, 10 months ago
Try this:
function remove_wysiwyg($enabled, $field_id) {
// change this field_id to the one you need to have ordinary textarea
if ( $field_id == 22 )
return false;return $enabled;
}add_filter( 'bp_xprofile_is_richtext_enabled_for_field', 'remove_wysiwyg', 10, 2 );
Place the code in bp-custom.php.
-
Slava Abakumov replied to the topic Message Multiple Users in the forum Creating & Extending 8 years, 10 months ago
Try something like this:
function your_function($params){
[Read more]
/* here is the content of $params:
array(
'sender_id' => bp_loggedin_user_id(),
'thread_id' => false, // False for a new message, thread id for a reply to a thread.
'recipients' => array(), // Can be an array of usernames, user_ids or mixed.
'subject' =>… -
Slava Abakumov replied to the topic User that is not member of group can reply to comments in the forum How-to & Troubleshooting 8 years, 10 months ago
Yes, intentionally. It is done for public groups only.
- Load More
@slaffik
Active 3 days, 23 hours ago