Search Results for 'bbpress'
-
Search Results
-
Hello everyone. I’m using the following snippet that will display the first name and last initial for users in buddypress. However, in bbpress it has no effect. Any ideas on how I could edit this to get it to work for bbpress? I’m so sad that something like this isn’t a default option.
$changeLastInitial = new changeLastInitial; add_filter('bp_displayed_user_fullname', array( $changeLastInitial, 'last_initial' ), 7, 1); add_filter('bp_get_member_name', array( $changeLastInitial, 'last_initial' ), 7, 1); add_filter('bp_get_the_profile_field_value', array( $changeLastInitial, 'last_initial_xprofle' ), 7, 3); add_filter('bp_core_get_user_displayname', array( $changeLastInitial, 'bp_core_get_user_displayname' ), 7, 2); class changeLastInitial { function bp_core_get_user_displayname($name, $id) { $name = $this->last_initial($name); return $name; } function last_initial_xprofle($value, $type, $id) { if ($id == 1) { $value = $this->last_initial($value); } return $value; } function last_initial($name) { $name_a = explode(' ', $name); // if there is at least two parts to the name if (count($name_a) == 2) { // replace the last part of the name with the first letter of the last part $name_a[count($name_a) - 1] = substr($name_a[count($name_a) - 1], 0, 1); // put it all back together $name = implode(' ', $name_a)."."; } return $name; } }Looking for the right solution…
We would like to create a social community site like facebook where members have profile pages and can post videos, pictures and such. Create and join groups and get push notifications for chosen content.
1ST PAGE – ENROLLMENT & INTRO VIDEO
1. Three minute intro video
2. MEMBERSHIP ENROLLMENT BUTTON:
Most important this will be a paid membership site with a pay to enter button. Emails provided in this sign up should integrate with mailchimp2ND PAGE- POST ENROLMENT
Once they’ve entered we would like a landing page that has
1. A embedded live stream video player
2. A randomized video playlist player
3. A grid avatar list of our core contributors below these two players
4. Tabs up top to navigate to members profiles, groups and morewe welcome your suggestions. Thank you all so much in advance
1. Which version of WordPress are you running? WordPress 5.0.2
2. Did you install WordPress as a directory or subdomain install? Directory installation
3. If a directory install, is it in root or in a subdirectory? Root
4. Did you upgrade from a previous version of WordPress? If so, from which version? No Fresh Install 2 days ago
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. N/A
6. Which version of BP are you running? 4.1.0
7. Did you upgraded from a previous version of BP? If so, from which version? NO
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? BuddyPress, Google Analytics for WordPress by MonsterInsights, Jetpack by WordPress.com, OptinMonster API, WPForms Lite
9. Are you using a standard WordPress theme or customized theme? Tonic
10. Which theme do you use ? Tonic
11. Have you modified the core files in any way? NO
12. Do you have any custom functions in bp-custom.php? NO
13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? NO
14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
15. Which company provides your hosting? Bluehost
16. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache
17. Which BP Theme are you using? Tonic
18. Have you overloaded any BuddyPress template files. NO
19. Any other site customisations that might have a bearing on the issue? NOHi,
I am working in a multisite installation and I feel that is occuring a strange behaviour between buddpress, bbpress and groups.
My installation has two websites, the root and a second where I am planning run the community, however as I would like to share users avatar between the entire network I activated the buddypress in multisite mode.
The problem is that when I use the code to define to buddypress to run in community, my option to assign forum to groups disappear from the group management are in the network panel. However if I create a group, a forum is created normally in the subsite (bbpress is activated in subsite only).
I would like to know if this is the normal behaviour from the plugin? I feel that if I set buddypress to run in a subsite in the network mode, it should still displaying the select forum metabox but grabbing information from the bbpress installation in the subsite.
Topic: custom visibility profile
Hi i am tryng tocreate a custom visibility option at the moment bbpress gives these options:
$this->visibility_levels = array(
‘public’ => array(
‘id’ => ‘public’,
‘label’ => _x( ‘Everyone’, ‘Visibility level setting’, ‘buddypress’ )
),
‘adminsonly’ => array(
‘id’ => ‘adminsonly’,
‘label’ => _x( ‘Only Me’, ‘Visibility level setting’, ‘buddypress’ )
),
‘loggedin’ => array(
‘id’ => ‘loggedin’,
‘label’ => _x( ‘All Members’, ‘Visibility level setting’, ‘buddypress’ )
)
);
if ( bp_is_active( ‘friends’ ) ) {
$this->visibility_levels[‘friends’] = array(
‘id’ => ‘friends’,
‘label’ => _x( ‘My Friends’, ‘Visibility level setting’, ‘buddypress’ )
);
}is it possible to create one only for group members ?
that only group members can acces that info
thx for the help 😀
Hi guys, I’m trying to change the font size i forums as it is remarkably smaller than the font in the rest of the site. I’m using child and bbpress .I think my biggest problem is that I’m not able to pinpoint the correct .css file. Could someone give me a hint?
Thank you buddys.Thhe submit/update/post button on profile or group activity stream is missing. Actually, it’s just invisable. You can still click the AREA of the button (guess and click lol) but before I launch membership, itll need to be seen.
It makes me think its style related. I used Customify Theme, and am running a number of buddy press plugins, as well as bbpress. Ive deactivated any activity stream related plugins, and also deactivated and deleted the activity privacy plugin.
Without deactivating… all my plugins. (again) Is there a few plugins I should watch for? some styling magaic I can do?
Hi Guys,
I have ticked Allow registered members to upload avatars but the option does not appear in the profile itself.
Allow registered members to upload cover images does show.
I have disabled all plugins to see if something was causing the issue but that hasn’t worked.
I have removed all custom CSS, custom functions. Anything I have added I have removed but no joy.Am i missing something?
The rest of Buddypress works fine just no option to change the profile picture/avatar!
Wordpress version: 4.9.8
Themeis Divi Version: 3.18.3
Buddypress version: 4.1.0
BBPress Version: 2.5.14