Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,251 through 18,275 (of 69,109 total)
  • Author
    Search Results
  • #174770
    @mercime
    Participant

    @federcolombo check out Boone’s code at https://buddypress.trac.wordpress.org/ticket/4677 and as Boone mentioned in trac ticket, you’d probably need to adjust styling with the removal of those avatars

    #174766

    In reply to: Buddypress profile

    @mercime
    Participant
    #174761
    @mercime
    Participant

    @rastarr I recall some code you can add instead of the plugin posted in same Buddydev.com site in an old post http://buddydev.com/buddypress/stealth-mode-for-buddypress-site-admin-plugin/

    Haven’t tested/used it, at least change is_site_admin to is_super_admin.
    Also if plugins_loaded doesn’t work, try bp_loaded

    #174756
    @mercime
    Participant

    @shubh14 It could be plugin conflict with the theme. The best place to ask for assistance is at the plugin’s forums. https://wordpress.org/support/plugin/buddypress-media

    #174753

    In reply to: CSS Question.

    shubh14
    Participant

    For CSS – Add the following to your theme stylesheet and change it to whatever color you want

    #buddypress a.activity-time-since {
    	color: #aaa;
    	text-decoration: none;
    }
    #buddypress a.activity-time-since:hover {
    	color: #888;
    	text-decoration: underline;
    }

    The “1 day, 1 hour ago” text is coming from \plugins\buddypress\bp-activity\bp-activity-template.php line 1332
    $time_since = apply_filters_ref_array( 'bp_activity_time_since', array( '<span class="time-since">' . bp_core_time_since( $activities_template->activity->date_recorded ) . '</span>', &$activities_template->activity ) );

    However, It’s not recommended to change core files. And I have no idea how to do it externally. Hope this helps

    #174749

    In reply to: Buddypress phone app

    bradlyr
    Participant

    All the details can be found at the link I provided above, but essentially it utilizes PhoneGap which allows you to write in HTML, CSS, and JS. You can submit your code to App Store and Play store. I am writing the plugin needed to communicate with the application and the application that will be submitted to the store. With both of these pieces you will be able to have a mobile application in both stores and directly communicates with your WordPress/Buddypress website.

    #174738

    In reply to: DVD Collection

    Shmoo
    Participant

    In the Plugins section I’ve seen two plugins that work with BuddyPress.

    Catalog + Pets the last one can also be used for everything else you just have to change the idea of Pets to some other subject.

    #174737
    Shmoo
    Participant

    True, but I was thinking of using the FitText.js plugin to prevent usernames from going to a second line when they become longer at this index page.
    While working with min-heights on each element I try to control each member ‘widget’ having the same overall height.

    I would like to use BuddyPress as an upgrade (redesign) of an exciting bbPress site that has been broken from upgrading from bbPress 1.0 -> 2.0.
    This site offers news articles, video + audio Post Formats and support trough bbPress but has grown into some very active ‘online-public-bar’ where people like to post a lot of Off Topic stuff mainly on the forum-side of the of the website while the homepage (news) is often overlooked.

    Using the Groups section for all Off Topic forum discussions and use the bbPress forums module only for real On Topic support would make this website more social and getting more people involved though the Activity-stream.
    Plus I could make a custom audio-postformat (Podcasts) query on the BP Groups page to list all latest Podcasts.

    Redesign of the Groups section. Replacing the Avatar for an icon that will be the same through the entire site and people will recognize it as Off Topic stuff.
    Maybe the font-size, spacing and coloring is still a bit off but I’ll look at this at the end, right now it using the Global styles.

    groups - change

    #174731

    In reply to: Whitespace in Username

    aces
    Participant
    #174727
    pjbursnall
    Participant

    Ok I’ll have a look and test each option. My preference is to hide both the admin bar and dashboard (as I would think most people would want to), but I will look at those plugins.

    Going forwards I would suggest a lot of people would be happier with BP if normal users could run through all functions with ever seeing the admin bar or dashboard.

    Thanks,
    Paul.

    #174725
    glyndavidson
    Participant

    Nope, that didn’t fix it.

    BuddyPress and bbPress are not network activated.

    If I delete a group from one site, it is deleted from all other sites at the same time 🙁

    Any suggestions?

    P.S. I’m new to BuddyPress

    #174721
    valk
    Participant

    I finally got the chance to come back >_<


    @mercime
    thank you! that’s one solution down also great plugins there 😀


    @cliffdillard
    i’ve been searching for group options here are things I’ve come across

    https://wordpress.org/plugins/buddypress-registration-groups-1/
    https://wordpress.org/plugins/buddypress-groupomatic/
    https://wordpress.org/plugins/welcome-pack/

    hope one of those can help gl!

    #174717
    modemlooper
    Moderator

    check the WP plugin repo there are some plugins to make the admin bar work better on mobile

    #174712
    newbie2011
    Participant

    @ajchimera, No I have not inspected with Google Chrome. I never thought about a conflict with the wordpress theme and I will look into it.


    @macpresss
    , I already have a buddypress.css in my theme. I am having trouble locating some of the markup and thought maybe there was another css file for bussypress that I have might of over looked.

    I will keep looking into the issue, thanks

    #174709
    pjbursnall
    Participant

    Thanks 🙂

    #174708
    pjbursnall
    Participant

    Thanks again Matt, I’ll have a look tomorrow. My previous point is the BP doesn’t work ‘out the box’ when you move onto mobile/tablet. Something of a failing.

    Thanks,
    Paul.

    #174707
    mattg123
    Participant

    @pjbursnall , I wouldn’t say that it is pretty easy here

    <?php global $current_user;
    		get_currentuserinfo();
    		$display = $current_user->display_name;
    		$login = $current_user->user_login;
    		$userid = $current_user->ID;
                    $home = get_home_url();
    ?>

    add that above your custom drop-down then its pretty simple just echo out the username, url etc <li class="li-fourth"><a href="<?php echo $home . '/members/' . $login . '/activity/mentions'; ?>">Mentions</a></li>

    EDIT –

    Oh the other bit you’d have to google for is the avatar but here
    <?php echo bp_core_fetch_avatar( array('item_id' => $userid, 'type' => 'full', 'width' => 100,'height' => 100));?>
    You’ll want to adjust the width/height accordingly

    #174705
    pjbursnall
    Participant

    Hi Matt,

    I have no issue creating a drop-down menu, the other side is a little trickier when you don’t know php, but I’ll have a good read.

    Seems BP is not as straightforward as it’s made out to be.

    Thanks,
    Paul.

    #174704
    mattg123
    Participant

    @pjbursnall yeah that code replicates the notification element only (the only part that is somewhat confusing to replicate) you place the code in the plugins directory in bp-custom.php you may have to create the file yourself.

    http://stackoverflow.com/questions/9953482/how-to-make-a-pure-css-based-dropdown-menu – shows you how to create a drop down menu, https://codex.wordpress.org/Function_Reference/get_currentuserinfo get the current users info so you can create links to their profile pages, etc.

    Just a note, to add the notifcations to your custom bar your code will look something like <li><?php bp_notification_badge(); ?></li>

    #174703
    pjbursnall
    Participant

    Hi Matt,

    Thanks for the quick reply. Agreed on the admin bar, seems kind of lazy to me in it’s current form. Please excuse my ignorance but where do I place the above? My theme’s functions.php? And will that just handle the notifications element?

    I’d like to find a proper fix for this as on some devices BP is completely unusable.

    Thanks again,
    Paul.

    #174702
    mattg123
    Participant

    @pjbursnall Personally I think buddypress should disable admin access anyway as most users don’t want it but that is neither here nor there. Recreating the admin bar is pretty easy, you need to know some css, html and a few bp functions to get the current users details like username etc, as for the notifications @modemlooper or @mercime posted this a while back (my apologies for not remembering which).

    function bp_notification_badge() {
    	if ( is_user_logged_in() ) {
    	global $current_user;
    	get_currentuserinfo();
    			$notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id() );
    				if ( empty($notifications)) {
    				echo '<li class="li-first" id="li-first-right"><a href="' . get_home_url() . '/members/' . $current_user->user_login . '"><span class="circle-zero">0</span></a><ul class="second-level" id="second-level-right"><li class="li-second"><a href="' . get_home_url() . '/members/' . $current_user->user_login . '">No new notifications!</a></li></ul></li>';
    				} else {
    						echo '<ul class="second-level" id="second-level-right">';
    					$counter = 0;
    						for ( $i = 0; $i < count($notifications); $i++ ) {
    						$badge = count($notifications);
    						echo '<li class="li-third">'.$notifications[$i].'</li>';		
    						}
    				echo '</ul>';
    				echo '<a href="' . get_home_url() . '/members/' . $current_user->user_login . '"><span class="circle-badge">'.$badge.'</span></a>';
    			}
    	}
    }

    As for actually disabling the admin bar + backend that can be done with a plugin, plenty of them just google.

    #174694
    Shmoo
    Participant

    The buddypress.css file is inside the plugins folder.

    wp-content / plugins / buddypress / bp-templates / bp-legacy / css / buddypress.css (copy)

    If you wanna change or add to this file this file you can copy-/paste it inside your WP theme folder inside a css folder and this new file will be used instead of the old one.

    wp-content / themes / [ your theme name ] / css / buddypress.css (paste)

    #174692

    In reply to: Buddypress phone app

    joethepro
    Participant

    @bradlyr – Can you give me more details? I’m looking for some code to start out as a base for a buddypress / bbpress app for our site. Are you writing that?

    #174683
    Ajchimera
    Participant

    It may be a conflict with buddypress.css and the WordPress theme. Have you inspected the element in Google chrome?

    #174679
    mrwulf
    Participant

    I think what you’re really looking for is this plugin: BP Direct Menus. You can put a menu item or shortcode that links to any buddypress page. It even lets you customize the menu name with the user’s information.

    Full disclosure: I wrote the plugin after I couldn’t find a more elegant solution to this same problem.

Viewing 25 results - 18,251 through 18,275 (of 69,109 total)
Skip to toolbar