Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 41,326 through 41,350 (of 69,093 total)
  • Author
    Search Results
  • #108139
    JafarNajafov
    Member

    Using dropbox doesn’t make any diffrences. Actually it made my site to load slower . Try to Use Google Libraries and WordPress Gzip Compression plugins. IT will improve your site’s performance.

    #108138
    @mercime
    Participant
    #108136
    ewebber
    Participant

    Does anyone have an alternative to minify?

    #108135
    @mercime
    Participant

    @gunju2221 maybe it’s corrected now, don’t see screwed up structure. What’s strange is that your @ mention to me did not appear in my profile at all. Just came upon this now.

    #108129
    Virtuali
    Participant
    #108128
    pcwriter
    Participant

    @gunju2221

    Hi again! As I mentioned in my 2nd post: “Removing the bp-adminbar is easy, it’s calling the wp one afterwards that’s got me stuck.”

    Removing the bp-adminbar is not the problem. The problem is in showing the WP bar after removal of the bp-adminbar. Or, I should say: the problem WAS… It turns out the call to display the WP bar is surprisingly simple: `show_admin_bar(true);` So, the following in functions.php efectively replaces the bp-adminbar with the WP version. Now I can create the switch for my theme. Thanks for your help!

    `define ( ‘BP_DISABLE_ADMIN_BAR’, true );
    show_admin_bar(true);`

    #108125
    pcwriter
    Participant

    Thanks, but I think your last post was in answer to the last poster’s question in this thread:
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/show-bp-admin-bar-while-in-wp-admin-only-and-hide-it-in-the-rest-of-the-site/

    `remove_action( ‘admin_footer’, ‘bp_core_admin_bar’ );` effectively removes the adminbar from the backend, but that’s not what I’m trying to achieve.
    I’m trying to replace the bp-adminbar with the WordPress adminbar in a Buddypress theme.

    #108122
    pcwriter
    Participant

    @gunju2221

    Thanks. The end result is precisely what I’d like to achieve. But I’d like to be able to do it in functions.php so it can be included as a theme option (ie – a switch to select either BP or WP adminbar). Removing the bp-adminbar is easy, it’s calling the wp one afterwards that’s got me stuck.

    #108121
    Virtuali
    Participant

    I find that very confusing also, in fact, I think it’s not really necessary.

    Undo your changes that you did to follow Peatlings Template pack instructions.

    The biggest thing that you need to do for custom theme is import the CSS+ functions, and make your CSS fit inside your theme, and your good to go.

    There might be other theme adjustments you might need to do, but I can’t speak for your theme.

    P.S @mercime, something screwed up the structure of this topic, but it’s weird, no code was posted! :???:

    imjscn
    Participant

    @pcwriter , can I use your code to remove adminbar from dashboard? I tried the following 3 modifications, neither of them works:
    `if( is_admin())
    remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );`
    or
    `if( is_admin())
    remove_action( ‘admin_footer’, ‘bp_core_admin_bar’, 8 );`
    or
    `add_action(‘bp_loaded’, ‘remove_adminbar_from_dashboard );`

    #108116
    Archie Webmaker
    Participant

    Delete the Buddypress Template pack if exist

    #108115
    modemlooper
    Moderator

    If it’s the same computer you saved the form to cookies. You can delete cookies and empty the cache in browser settings. If you have a computer thats used by many you should turn off the ability for a browser to save usernames and passwords.

    #108113
    @mercime
    Participant

    Have you read this? https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/

    You now have six BuddyPress template folders transferred to your active WP theme folder in server which you should download to your computer to edit.

    Open up the first file in activity/index.php file and make the following changes:

    At the top of the file, replace:
    `

    `

    with:
    `

    `

    At the bottom of the activity/index.php file replace:
    `

    `

    with
    `

    `

    Save file and upload. Check alignment by going to http://yoursiteDomain.com/activity/. If all’s well, start making the changes on the remaining 12 files and upload to server within respective folders/subfolders.

    #108112
    @mercime
    Participant
    #108111
    linkyou
    Member

    can any one please explain this

    If BuddyPress pages are not aligned correctly then you will need to modify some of the templates to match your theme’s HTML structure. The best way to do this is to FTP to your theme’s files at:

    /wp-content/themes/jobroller/

    Then open up the page.php file (if this does not exist use index.php). Make note of the HTML template structure of the file, specifically the `

    ` tags that surround the content and sidebar.

    You will need to change the HTML structure in the BuddyPress templates that you copied into your theme to match the structure in your page.php or index.php file. The files that you need to edit are as follows (leave out any folders you have not copied over in step two):

    /activity/index.php
    /blogs/index.php
    /forums/index.php
    /groups/index.php
    /groups/create.php
    /groups/single/home.php
    /groups/single/plugins.php
    /members/index.php
    /members/single/home.php
    /members/single/plugins.php
    /registration/register.php

    Once you are done matching up the HTML structure of your theme in these template files, please take another look through your site. You should find that BuddyPress pages now fit inside the content structure of your theme.

    #108110

    In reply to: Can’t active BP

    I have this problem as well. I installed wordpress 3.1 on my 1and1.com host and am trying to add BP 1.2.8.

    (uiserver) > uname -mrsn
    Linux infong576 2.6.28.8-20100125a-iscsi-ntacker-fasync-mremap-grsec i686

    From my debug.log:

    17-Mar-2011 19:19:32] PHP Notice: Undefined variable: wpdb in /homepages/staging/wp-content/plugins/buddypress/bp-core/bp-core-wpabstraction.php on line 13

    #108103
    imjscn
    Participant

    @mercime , thanks for the link. I did that on bp_adminbar_login_menu successfully, but when it comes to bp_adminbar_account_menu, the array codes beyond my ability, so I am thinking to use bp_core_remove_subnav_item. Maybe it’s not the way–still need to work with the bp_options_nav array.
    This is where bp get the sub-nav:

    	$counter = 0;
    foreach( (array)$bp->bp_nav as $nav_item ) {
    $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : '';
    
    echo '<li>';
    echo '<a id="bp-admin-' . $nav_item . '" href="' . $nav_item . '">' . $nav_item . '</a>';
    
    if ( is_array( $bp->bp_options_nav[$nav_item] ) ) {
    echo '<ul>';
    $sub_counter = 0;
    
    foreach( (array)$bp->bp_options_nav[$nav_item] as $subnav_item ) {
    $link = str_replace( $bp->displayed_user->domain, $bp->loggedin_user->domain, $subnav_item );
    $name = str_replace( $bp->displayed_user->userdata->user_login, $bp->loggedin_user->userdata->user_login, $subnav_item );
    $alt = ( 0 == $sub_counter % 2 ) ? ' class="alt"' : '';
    echo '<li><a id="bp-admin-' . $subnav_item . '" href="' . $link . '">' . $name . '</a></li>';
    $sub_counter++;
    }
    echo '</ul>';
    }
    
    echo '</li>';
    

    How can I check this array and filter items inside?

    Boone Gorges
    Keymaster

    acpage is the way that BP renders activity pagination to those clients with javascript disabled – such as search engines.

    I started a ticket for discussion of technical issues: https://trac.buddypress.org/ticket/3116

    #107699
    JaredGoyette
    Member

    Peter, did you ever find a solution to this? On my site, every time a new user tries to register, my name is the default, which they have to erase before adding their own. How do I fix this?

    #108089
    thors1982
    Member

    Thanks r-a-y

    Yeah, I had no idea buddypress wouldn’t connect and use old wordpress stuff.

    I am trying to figure it out Boone Gorges plugin though.. cause that plugin runs almost instantly but still sin’t pulling over the old posts/comments.

    Does his plugin requires “WordPress MU”

    Thanks for your help, and at least I know why its not pulling in the old information

    #108088

    In reply to: Buddypress roles

    FitzUCF
    Member

    @Jeff. We are in desperate need of limiting roles of users on BP. We are operating in a K-12 environment with students and teachers. Can we limit the roles of local users (students)? We just upgraded to WP3.1 and the new BP as well.

    Thanks

    Hugo Ashmore
    Participant

    :) if it’s any consolation it took me a few minutes to puzzle out what was going on when I first downloaded and ran a beta, oh ok a few hours

    #108082
    @mercime
    Participant

    @hozefasmile2007 Thanks for sharing your find. Got it, Sliding Readmore plugin conflict with cropping of avatar image uploads.
    Cheers.

    #108080
    hozefasmile2007
    Participant

    Hi Guys I was also suffering with this avatar upload image cropping problem for the last 2 weeks, I had thought that this would be a problem due to using wordpress for multisite or may be a problem with new wordpress and buddypress integration but finally I found that this was due to a little plugin that I never thought can cause such issue.
    This plugin name is “sliding readmore”.
    As I removed this plugin all the problem goes away with image cropping.

    @mercime
    Participant

    WP/BP versions? Change theme to bp-default theme. If that doesn’t resolve the issue, deactivate all plugins except BuddyPress.

Viewing 25 results - 41,326 through 41,350 (of 69,093 total)
Skip to toolbar