Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 676 through 700 (of 811 total)
  • Author
    Search Results
  • #177546
    TheOptiMystic
    Participant

    Hi there-
    @ubernaut yes the pages are def associated correctly.

    @buddyboss if this is the case any ideas about how to move forward?

    THanks again

    #177423
    BuddyBoss
    Participant

    @betson Are you also using the BuddyBoss theme like JeffE, or another theme? If so, please update to a recent version of the theme and it’ll fix it immediately. If not, contact your theme author. We had this issue by previously making edits to /members/single/home.php. BP 1.9 added a call in there for the Notifications page, and since we had previously edited that template (overrode it within our theme) it caused the Notifications page to go blank. If you’re using another theme they possibly had the same issue, so possibly it’s the same solution.

    This is the line that fixed it:

    elseif ( function_exists('bp_is_user_notifications') 
    && bp_is_user_notifications() ) :
    bp_get_template_part( 'members/single/notifications' );

    That goes with all of the other template calls in the “item-body” div.

    #177357
    BuddyBoss
    Participant

    Any idea why my activity stream is always completely empty here at buddypress.org? Appears to be broken.

    http://buddypress.org/community/members/buddyboss/

    #177307
    BuddyBoss
    Participant

    Hey there, I’m the author of BuddyBoss. This is not the default behavior in the theme. Have you updated to the latest version? 3.0.6 put out a patch for notifications before BuddyPress 1.9 came out, and I have a feeling you’re using a version prior to that as that could cause a blank page without the patch. If you still have issues after updating head over to our support forums and TJ will happily help you out.

    #177299
    @mercime
    Participant

    @buddyboss no inevitability there. Check out many responsive table solutions http://css-tricks.com/responsive-data-table-roundup/

    #177283
    JeffE
    Participant

    Same problem here, when any of my users go to their Notifications page it is blank. I’m on latest BuddyPress release with BuddyBoss theme with no customizations.

    #177244
    Henry Wright
    Moderator

    @buddyboss if you’re not happy with the notification tables then you can remove the default and add your own. e.g:

    remove_action( 'bp_notification_settings', 'messages_screen_notification_settings', 2 );
    // remove the rest too... 
    
    function custom_notification_settings() {
       // your own custom stuff
    }
    add_action( 'bp_notification_settings', 'custom_notification_settings' );
    #177202
    Hugo Ashmore
    Participant

    @buddyboss
    A relatively simple suggestion for 2.0 – Get rid of tables in all templates so developers can style everything for mobile without having to override templates to convert tables to lists. Notifications and Messages use tables right now and they don’t have to.

    This is fundamentally a really bad notion, you do not change markup to suit devices – ever! Markup exists to accurately describe data in a semantic manner if that means that a table is the correct element then a table is what is used; if a devise can’t handle that then it’s the devices problem, if you have to try and change the markup in that instance then so be it and good luck.

    ‘Notifications’ correctly uses a table to display a columner/row relationship of data it’s not a case that it needn’t, this is correct; if you tried to put that into a list you would break the header relationship and would need to lump all of a notifications meta into one list and then have to use something like a dl list to associate date received to the metadata.

    Of course though if you wish to modify the templates for your theme then you’re quite at liberty to do so that is why they are overloadable!

    #177182
    modemlooper
    Moderator

    BTW BuddyBoss looks great, really has come along way.

    #177168
    BuddyBoss
    Participant

    Would be awesome to at least have a nice iPhone ready theme available.

    BuddyBoss is an iPhone / Android compatible theme for BuddyPress.

    http://www.buddyboss.com/

    #177167
    Henry Wright
    Moderator

    @buddyboss any idea how to make the crop preview image fluid?

    #177166
    BuddyBoss
    Participant

    With BuddyBoss you can upload photos to your BP profile on a phone. Avatar uploads work too, but the native avatar cropper in BP could still use some work on mobile as it’s too big for some screens.

    #175575
    Rocio Valdivia
    Participant

    Thanks @henrywright-1, and that was what I did, I was the one that added the prefix:

    buddyboss_childtheme_ to my function, but the point is that if I use the word “core” inside the title of a function, the ajax stop working 😉

    #175570
    Henry
    Member

    @_dorsvenabili when adding custom functions to functions.php it might be a good idea to add a prefix to all of your function names. As you can see buddyboss has done it with buddyboss_childtheme_.

    You could have used dorsvenabili_core_get_notifications_for_user or my_core_get_notifications_for_user

    Saves conflicts from happening 🙂

    #175560
    Rocio Valdivia
    Participant

    Ok, I have found the problem and I fixed it 🙂

    The conflict was the name of the function:

    buddyboss_childtheme_core_get_notifications_for_user( $type_notification )

    When I was testing the function to find the problem, I realised that even with the empty function the ajax problem was still there. So I tried changing the function’s name and done!

    The new name is:

    buddyboss_childtheme_get_notifications_for_user( $type_notification )

    I will never use again the word “core” in the title of a function in functions.php 😉

    Hope it will be useful for someone. Cheers!

    Rocío

    #175554
    Rocio Valdivia
    Participant

    Hi guys! I have a WP 3.7.1 and BP 1.8.1 and I have created the following function in my functions.php to retrieve the number of notifications of the current user. The function has one parametrer $type_notification that can be: ‘new_message’, ‘group_invite’ or ‘friendship_request’.

    The function works quite well, but the point is that with that function in functions.php, the BP ajax doesn’t work. For example: the search box in members or the members list pagination. If I delete this function from functions.php, the members pagination, etc. works fine again.

    Does anyone know why is this happening? or an alternative function that I can use for this porpouse that doens’t break the ajax?

    Thanks in advance! 🙂

    Rocío Valdivia

    /**
     * Get notifications for a specific user
     */
    function buddyboss_childtheme_core_get_notifications_for_user( $type_notification ) {
    	global $bp;
    	
    	$user_id = $bp->loggedin_user->id;
    
    	$notifications         = BP_Core_Notification::get_all_for_user( $user_id );
    	$grouped_notifications = array(); // Notification groups
    	$renderable            = array(); // Renderable notifications
    
    	// Group notifications by component and component_action and provide totals
    	for ( $i = 0, $count = count( $notifications ); $i < $count; ++$i ) {
    		$notification = $notifications[$i];
    		$grouped_notifications[$notification->component_name][$notification->component_action][] = $notification;
    	}
    	
    	if($type_notification == 'new_message'):
    		$number_notifications = count($grouped_notifications['messages']['new_message']);
    	elseif($type_notification == 'group_invite'):
    		$number_notifications = count($grouped_notifications['groups']['group_invite']);
    	elseif($type_notification == 'friendship_request'):
    		$number_notifications = count($grouped_notifications['friends']['friendship_request']);
    	endif;
    
    	return $number_notifications;
    }
    
    #175219
    Anton
    Participant

    Same here, although I don’t get a 404 but a “no pending friendship” message – disabling Extended Profiles shows me the list. Am I doing something wrong? I’m using BuddyBoss + a child theme, FWIW.

    #173329
    Anthony Fogleman
    Participant

    I’m building a site in BuddyBoss 3.0, their new responsive layout, and it’s great, however, I’ve got a couple of pesky glitches, and I landed here looking for the page talking about approve WPML themes.
    Good luck!

    #173324
    TJ
    Participant
    #172978

    In reply to: Custom Template

    @mercime
    Participant

    @buddhatunes not familiar with how Buddyboss is wired. But it should follow template hierarchy supported of BP https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/

    #172909

    In reply to: Custom Template

    buddhatunes
    Participant

    Using a buddyboss child theme, custom page called “hosting”

    tried content-buddypress.php but that affects all pages, just want to limit new template to “hosting” page

    http://www.xxxxxx.com/hosting and http://www.xxxxxx.com/users/johnsmith use different templates but no difference

    #170155
    BuddyBoss
    Participant

    The BuddyBoss theme is made specifically to be super super mobile, with a stylesheet just for BuddyPress and one just for bbPress, making all of that content responsive.

    Home

    psound
    Participant

    I am having issues seeing Activity and Members after upgrade to 1.8.1 (from 1.6).

    When looking at http://spiritualnotreligious.net/activity/ I see, “Sorry, there was no activity found. Please try a different filter.” This is with filter set to “Everything”.

    When looking at http://spiritualnotreligious.net/members I see error “Sorry, no members were found.” (We have more than 1000 members).

    I can see all users at /wp-admin/users.php

    /wp-admin/admin.php?page=bp-groups says “No Groups Found” with filter of “All” even though it also notes on the tab that there are (5) Public groups.

    /wp-admin/admin.php?page=bp-activity says “No activities found.” even though the navigation section on same page states 5,344 items (page 1 of 268).

    Help please!

    1. Which version of WordPress are you running?- 3.6

    2. Did you install WordPress as a directory or subdomain install? directory

    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? Yes, 3.4

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? 1.8.1

    7. Did you upgraded from a previous version of BP? If so, from which version? 1.6

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? BackUpWordPress, PHP Execution, s2Member® Framework, All in one Favicon (I have seen same issue with all disabled)

    9. Are you using the standard BuddyPress themes or customized themes? BuddyBoss, but have seen same issue with BuddyPress Default

    10. Have you modified the core files in any way? No. I even attempted removing the buddypress directory and uploading fresh.

    11. Do you have any custom functions in bp-custom.php? No

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? No bbPress.

    13. Please provide a list of any errors in your server’s log files.

    14. Which company provides your hosting? Dreamhost

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache (I believe) – Dreamhost VPS

    #169314
    BuddyBoss
    Participant

    Hey guys! I’m the owner of BuddyBoss and just reading though these comments. We have a mobile version coming out August 15th. You can see the demo here: http://www.buddyboss.com/demo/

    @flyveren Thanks for the compliments 🙂 We work hard to keep everything up to date. This new version is built around BuddyPress 1.7 / 1.8, the way BP now allows any WordPress theme to work with it. We rebuilt it as a standard WordPress theme with our custom features only used when BuddyPress is activated.

    stewartjanderson
    Participant

    Greetings, everyone.

    I’m looking to create a tab on a member’s Buddypress profile that, when selected by a user, will take him/her to that member’s author page so that our users can easily access a feed of posts by that member. There are a few plugins that attempt to create a feed within the Buddypress profile, but I’ve found that they either no longer function (BP Posts on Profile) or have serious performance issues (BuddyBoss). I’d also prefer to use the Author page for SEO/duplicate content reasons.

    Adding a profile nav tab is not a problem – I can do that. I just don’t know what the code below that would look like to link that tab to the author page. Thanks in advance for any help.

    Note: WP and BP are both running current versions.

Viewing 25 results - 676 through 700 (of 811 total)
Skip to toolbar