-
Bit Boy replied to the topic Add file upload field in profile fields in the forum Creating & Extending 5 years, 6 months ago
To add my two cents, There is another plugin that allows file as well as image
Regards
B -
Bit Boy replied to the topic Take a hidden groups id in the forum How-to & Troubleshooting 5 years, 9 months ago
Hi Artyom,
If you need to fetch hidden groups, you can passshow_hidden=> true' in bp_has_groups args. Like
bp_has_groups(array( ‘show_hidden’=> true ) )
`
Hope it helps.
Best
B -
Bit Boy replied to the topic Changing URL Structure of BuddyPress in the forum How-to & Troubleshooting 6 years ago
Hi,
It is possible to make it so but in that case profile needs to be default component.Try adding
define( 'BP_DEFAULT_COMPONENT', 'profile' );
to your bp-custom.php and see if it suits your need.
Regards
B -
Bit Boy replied to the topic Google Authenticator in the forum Third Party Plugins 6 years ago
Hi,
There seems to be solution available.You may use the BuddyPress addon from here
Using two step Login Authentication with Google Authenticator and BuddyPress
It needs the Google Authenticator plugin and enables the settings to the user(they can change from setting page).
Regards
B -
Bit Boy replied to the topic User ID in the forum Third Party Plugins 6 years ago
Hello,
You can use this plugin for showing the ID in the dashboard.and you may add following code to your theme’s functions.php to show the ID on user profile when the user is viewing his/her own profile or it is being viewed by the site admin.
[Read more]
/**
* Show User ID on a user's profile to the… -
Bit Boy replied to the topic Newbie question in the forum Installing BuddyPress 6 years ago
Hi,
BuddyPress works on top of WordPress to add community/social features. The integration is almost seamless.Now to answer your questions:-
1. will my members have to login a second time to use BuddyPress?
Is the login required by WordPress account? if yes, They will not need to login again.2. Will that they then have two accounts to deal…[Read more]
-
Bit Boy replied to the topic "Edit your bio" links to wp-admin in the forum How-to & Troubleshooting 6 years ago
You are welcome 🙂
-
Bit Boy replied to the topic "Edit your bio" links to wp-admin in the forum How-to & Troubleshooting 6 years ago
Hi Janaa,
The best option here will be to disable the bioedit section.
You can do it by visiting Dashboard->Appearance->Customize and clicking on “BuddyPress Nouveau” panel.
Under this panel, you will see a lot of section. You will need to choose “Member Front Page” as shown hereOnce you are there, you will see 2…[Read more]
-
Bit Boy replied to the topic Only display if user is viewing their profile in the forum How-to & Troubleshooting 6 years ago
Hi,
You can use bp_is_my_profile() to check and display content as belowif ( bp_is_my_profile() ) {
echo "The content for profile owner.";
}
Best Regards
B -
Bit Boy replied to the topic The filed "Who can see this field? keeps appearing when registration page loads in the forum How-to & Troubleshooting 6 years ago
In that case, you can put it in your bp-custom.php or your theme/child theme’s functions.php
/**
* Start buffering the visibility template.
*/
function bitboy_start_buffering_visibility_template() {
ob_start();
}
add_action( 'bp_custom_profile_edit_fields_pre_visibility', 'bitboy_start_buffering_visibility_template', -1 );/**
* End buffer…[Read more] -
Bit Boy replied to the topic The filed "Who can see this field? keeps appearing when registration page loads in the forum How-to & Troubleshooting 6 years ago
Btw, The above code disables the toggle option on profile edit too.
To only change it on registration page, Please use the below code instead
.register-page .signup-form .editfield .field-visibility-settings,
#register-page .standard-form .field-visibility-settings-header {
display:none;
}
Best Regards
B -
Bit Boy replied to the topic The filed "Who can see this field? keeps appearing when registration page loads in the forum How-to & Troubleshooting 6 years ago
Hi,
How did you disable the option? Are you using css to do it?There are two ways to do it
1. Using css
2. editing template file(register.php and keeping a copy in your theme’s buddypress/members directory)I will prefer the first approach as it will not be much work on a site admin’s part.
[Read more]
.register-page .signup-form .editfield… -
Bit Boy replied to the topic How to change the slug for “friends” to “colleagues”? in the forum How-to & Troubleshooting 6 years ago
You are welcome.
-
Bit Boy replied to the topic Default Landing group while editing Member profile in the forum How-to & Troubleshooting 6 years ago
Hi,
Here is another approach to solve the same issue./**
* Change the profile edit landing group tab.
*/
function bitboy_change_landing_profile_group() {// are we on edit profile?
if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) {
return;
}$group_id = 2;
// Make sure a group is set.
if ( ! bp_action_variable( 1 ) )…[Read more] -
Bit Boy replied to the topic How to change the slug for “friends” to “colleagues”? in the forum How-to & Troubleshooting 6 years ago
Hello,
You can change that by defining a constant in your bp-custom.php
define( 'BP_FRIENDS_SLUG', 'colleagues');
And yes, you can change slug for most of the component without affecting the functionality.
You may find the details at the bottom of this page for changing other…[Read more]
@bitboy
Active 2 years, 7 months ago