Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,376 through 4,400 (of 31,072 total)
  • Author
    Search Results
  • #255255
    danbp
    Participant

    Nav items names can be changed via the language file.

    Which language do you use on your site ?
    Which language is used with BuddyPress ? (if turkish, get in touch with one of the editors here and ask for update)
    Is your theme fully translated to that language ?

    To move the User Menu sub-menu, read here.

    Check also your theme support forum, perhaps you’ll find some related topics to this WP core menu.

    #255243
    sharmavishal
    Participant

    1. In BuddyPress, we by default get to see member page. I want to know how to redirect someone who is logging in/ new user after registration to News feed?

    search for login redirect plugins for buddypress

    2. I want to keep those wall, timeline and all in menu bar instead of profile tab. How to do that?

    check wp admin bar codex or associated plugins

    3. I am unable to hide admin bar/ that WordPress logo bar for non-admin user. no plugin helping me out.

    am aware of atleast 2 plugins which are working for me. u need to test/check which ones work with ur theme/setup

    4. how to make the menu such that signed in user can see log out button and other sign in/ register?

    via buddypress components in the menus. logged in and logged out menu links

    5. how to enable realtime notification and instant messaging private n groups both?

    notification is already there and its real time. i belive there is a group chat plugin for buddypress as well

    6. how to remove show dropdown menu in profile

    that would depend on ur theme which u are using

    PS:- I don’t know PHP much. moreover, I cannot afford to hire someone.

    then this would take much time and effort to customise it as per ur needs

    start from here

    Configure BuddyPress

    #255242
    sharmavishal
    Participant

    The auto suggest portion is a theme feature via javascript. check the following

    http://www.webgeekly.com/tutorials/jquery/3-steps-to-creating-a-jquery-autocomplete-drop-down-menu/

    #255232
    sharmavishal
    Participant

    i am assuming u activated the activity component and there are some actual activities happening on ur site? and does ur theme support buddypress?

    #255222
    vitamincee
    Participant

    I have the exact same theme and plugins set up on my development server, and this problem does not happen. The only difference that I can think of is that on the production server I’m running NGINX, and on the development server I’m running Apache. Can anyone confirm this version works with NGINX?

    #255221
    danbp
    Participant

    not_friends are in fact members. Are you sure you want to built this, as such widget already exist ! Ok, has no Add Friend button…

    BuddyPress Widgets

    Another solution would be to use a shortcode who will fire a kind of Members widget and the add friend button. Huh ? 🙂

    Add this snippet to bp-custom.php

    function show_our_members( $atts ) {
    $user_id = bp_displayed_user_id();  
    
    /**
     * Options
     * type:active, newest, popular, online, alphabetical, random)
     * number:number of items
     * size:size of avatar in px
    */
    
    	$atts = shortcode_atts( array(
    		'type' => 'newest',
    		'number' => '10',		
    		'size' => '30'
    	), $atts, 'ourmembers' );
     
    if ( bp_has_members( 'type='.$atts['type'].'&max='.$atts['number'] ) ) :    
    
    	while ( bp_members() ) : bp_the_member(); ?>  
    
    		<ul><li class="vcard">
    			<div class="item-avatar">
    				<a>"><?php bp_member_avatar(); ?></a>
    			</div>
    
    			<div class="item">
    				<div class="item-title fn"><a>" title="<?php bp_member_name(); ?>"><?php bp_member_name(); ?></a></div>				
    				<div class="item-meta"><?php bp_add_friend_button( $user_id ); ?></div>			
    			</div>
    		</li></ul>
    <?php    
    endwhile;
    endif;
    }
    add_shortcode( 'ourmembers', 'show_our_members' );

    The shortcode to use (in post, pages, widgets…), eg. [ourmembers size=20 type=newest number=8]

    The only thing you have to do, is to style it accordingly to your theme layout.
    Note that the classes are those used in BP’s Members widget. You can use them or add your own.

    #255195
    blaxcot
    Participant

    http://interfaithbook.com/activity/. I tried 6 different themes all the same result.

    #255194
    blaxcot
    Participant

    Yes. I thought that too. But it seems to be consistent theme to theme.
    By the way it’s on the activity page not the home page. Sorry for the confusion.

    #255192
    r-a-y
    Keymaster

    I don’t think this is related to BuddyPress, but rather your WordPress theme.

    Your homepage is rendered by WordPress and not BuddyPress.

    #255169

    In reply to: Full Width

    snorklebum
    Participant

    Ok apologies for replying to myself but I’ve finally fixed and hopefully it’ll help someone else in the future.

    <body <?php if ( !bp_is_blog_page() ) { body_class( ‘full-width’ ); } else { body_class(); } ?>>

    The code above works with the child theme and renamed full-width.php file.

    #255156
    hosam020
    Participant

    @shanebp Thank you for the kindly reply
    Yes i am using it.
    i think you mean i have to call this action in theme funcation ourside the bp localfile.

    unction bbp_trash_topic( $topic_id = 0 ) {
    
    	// Validate topic ID
    	$topic_id = bbp_get_topic_id( $topic_id );
    
    	if ( empty( $topic_id ) || !bbp_is_topic( $topic_id ) )
    		return false;
    
    		$args = array(
    		'user_id'           => 386,
    		'item_id'           => $topic_id,
    		'secondary_item_id' => 0,
    		'component_name'    => 'forums',
    		'component_action'  => 'new_topic',
    		);
    	
    	bp_notifications_delete_notifications_by_item_id( $args );
    
    	do_action( 'bbp_trash_topic', $topic_id );

    Please ignore the args param just added a notification param to see if will delete it
    but never happend
    Sorry for my bad english i hope u understand me.

    #255150
    snorklebum
    Participant

    Hi,

    WP:4.5.3 BP:2.6.0 Theme:twentyfourteen

    I currently have my main page with a primary sidebar and content sidebar, I’ve set all other pages to use the full width template which seems to be working for events etc but buddypress only follows this setting on the main groups and members pages. As soon as I navigate to a group or member page it no longer uses that template is this correct behaviour?

    I have tried adding an if around the get_sidebar but this just leaves the area empty which I’m guessing is a css issue.

    I also tried copying the page-templates\full-width.php file to a child theme and renaming to buddypress.php but this also has the same effect of the empty space at the side.

    Any advice would be greatly appreciated.

    Thanks

    #255131
    nisha181
    Participant

    I have used default theme now. But same issue with my client. I don’t know why this is happening.

    #255127
    Slava Abakumov
    Moderator

    @lagodny

    Put this code in functions.php of your (child) theme.

    function lagodny_document_title_separator_pipe( $separator ) {
        return '|';
    }
    add_filter('document_title_separator', 'lagodny_document_title_separator_pipe');

    I assume that you are on the WordPress 4.4+.

    sharmavishal
    Participant

    are you using any seventhqueen theme? if yes check this

    Fatal error on a BuddyPress 2.6.0 upgrade

    #255123
    sharmavishal
    Participant

    can u shift to default wp 2016 theme and see if the issue remains?

    this would be mostly a plugin conflict imo

    #255115
    pandabear
    Participant

    I am getting a fatal error after upgrade to BP 2.6.0 as well. Upgraded to WP 4.5.3 yesterday, then BP 2.6.0 today. WP_Debug reports ‘Call to undefined function bp_loggedin_user_id()’ in my custom child theme (Canvas parent theme) functions.php file. I tried the patch on bp-loader.php, r-a-y, but that was a no go for me. This is wiping out all front and back-end display on my local server. Fortunately, production is running WP 4.5.3 with BP 2.5.3, which is running fine. Still trying to debug…

    #255107
    kalico
    Participant

    I’m getting a blank page for all groups, and some topics (I can’t see a pattern yet to which topics are blank). It’s so blank that there is nothing in “view source” at all (usually when it’s a theme problem I get something there, like basic body/html tags – just not enough to build a page).

    I’m getting ready to test for theme issues. But I definitely determined that a rollback to the previous version fixes the problem.

    EDIT: I should mention that it happens in TWO themes: BuddyBoss and Zerif Pro. So I suspect it’s a BP or plugin problem, not theme.

    I realize, however, that this could be a different problem than you have reported, so I will just watch this thread, and start a separate one if my problem persists.

    #255093
    syborg
    Participant

    I posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !

    #255089
    kaab321
    Participant

    I’m using a vibethemes theme.

    #255087
    r-a-y
    Keymaster

    Looks like the code example doesn’t work in your theme’s functions.php unless you change the hook from 'bp_groups_register_group_types' to 'bp_init'.

    However, the code example from the codex works as-is if used in wp-content/plugins/bp-custom.php.

    Going to file a bug report. Thanks for testing, @d8vjork!

    Update: Here’s the ticket – https://buddypress.trac.wordpress.org/ticket/7138

    #255085
    d8vjork
    Participant

    Yes, of course. I add this code on theme functions.php file:

    function bp_add_group_types() {
    
        bp_groups_register_group_type( 'radio', array(
            'labels' => array(
                'name' => 'Radios',
                'singular_name' => 'Radio'
            )
        ) );
    
    	bp_groups_register_group_type( 'community', array(
            'labels' => array(
                'name' => 'Comunidades',
                'singular_name' => 'Comunidad'
            )
        ) );
        bp_groups_register_group_type( 'team', array(
            'labels' => array(
                'name' => 'Equipos',
                'singular_name' => 'Equipo'
            )
        ) );
    }
    add_action( 'bp_groups_register_group_types', 'bp_add_group_types' );
    #255078
    Paul Wong-Gibbs
    Keymaster

    What theme are you using? Kleo?

    #255077
    Paul Wong-Gibbs
    Keymaster

    It looks like the Kleo theme might need to be updated for BuddyPress 2.6. I’d suggest to start by contact their support for help.

    #255070
    Slava Abakumov
    Moderator

    Thanks for sharing, @syborg!


    @jason75
    ,
    Could you please test the solution above with your theme?

    Also, @jason75 and @syborg – as you are owners of that Kleo theme, could you please contact Kleo authors with this thread information? They should test their theme with the latest BuddyPress 2.6.

Viewing 25 results - 4,376 through 4,400 (of 31,072 total)
Skip to toolbar