Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 44,301 through 44,325 (of 68,945 total)
  • Author
    Search Results
  • #99410
    Virtuali
    Participant

    HOLY CRAP, @hnla, it worked!!!!!!!!!!!

    Thank you so so so so so so so much!

    Now Will I need to do this on every single group???

    #99409

    In reply to: Mapology is available

    Anonymous User 96400
    Inactive

    @neosmedia
    Sorry for the delay in getting you set up for the support forum. It was the weekend after all ;) I’ve already made you a member of the Mapology group. Please post your questions over there. Thanks!

    kkeller22
    Member

    Hello,

    extended profiles is enabled. I am using the default buddypress theme. I have permalinks set to non-default. Does it have anything to do with my blog not being my main page (instead of pangeastable.com it is pangeastable.com/my-palate). I’m thinking it may have something to do with the permalinks but I have no idea where to begin correcting this. I’m using yahoo hosting so you can install wordpress through our yahoo admin center. I also tried installing wordpress manually and ran into the same problem.

    #99404
    Virtuali
    Participant

    @eor, I do have a solution for you! Go into your theme’s custom CSS file, and add the following CSS.

    Global Elements


    */

    }

    h1, h2, h3, h4, h5, h6 {
    margin: 5px 0 15px 0;
    }

    p { margin-bottom: 15px; }
    p:last-child { margin-bottom: 0; }

    hr {
    background-color:#E7E7E7;
    border:0 none;
    clear:both;
    height:1px;
    margin: 20px 0;
    }

    img.avatar {
    float: left;
    border: 2px solid #eee;
    }

    img.avatar {
    background: #ffffff;
    padding: 4px;
    border: 1px solid #ddd;
    /* Round Corners (native in Safari, Firefox and Chrome) */
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    /* Add the Shadow */
    -moz-box-shadow: 2px 2px 2px #dddddd;
    -webkit-box-shadow: 2px 2px 2px #dddddd;
    }

    Virtuali
    Participant

    @guigoz, there is a plugin that allows you to put RSS Feeds into your groups. So every time a member inserts a RSS, the posts will show up on the activity stream.

    Is that what you are looking for?

    Virtuali
    Participant

    To fix the error message, at-least for now, delete the buddypress plugin, then re-install it. Sometimes updates can screw up plugins. (especially a major plugin like buddypress)

    In the future, deactivate such plugins to avoid this.

    #99397
    pcwriter
    Participant

    @modemlooper

    Thanks for the suggestion. I had looked at some grid frameworks, but didn’t want to go that route for this theme. I’m keeping it in mind for future projects though.

    @bowromir
    Bingo! Silly me and my thick head ;-) I was working with fixed-width sidebars. Percentages didn’t even occur to me for them. Your suggestion got me going where I wanted to go with my fluid theme. Thanks a bunch!
    :-)

    #99394
    David
    Participant

    I final got what I was looking for. Here is the code if anyone wants to try it or use it. Paste it in the functions.php of your child themes. What it does is removes the orginal function for the “My Blogs” link in the admin bar and I then made my own function that calls that original function only if the user has a blog. Thus anyone that is just a subscriber to the site will not see the “My Blogs” link in the admin bar (to confuse them).

    /* Removes the function from the buddypress/bp-core/bp-core-adminbar.php file in buddypress plugin*/
    remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_blogs_menu’, 6);
    
    /*reset the “MY Blogs” link function so that it only shows for users that have blogs and not subscribers*/
    function bp_adminbar_mynew_blogs_menu() {
    global $bp;
    
    if ( !is_user_logged_in() || !function_exists(‘bp_blogs_install’) )
    return false;
    
    if ( !$blogs = wp_cache_get( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, ‘bp’ ) ) {
    $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id, true );
    wp_cache_set( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, $blogs, ‘bp’ );
    }
    
    echo ‘
    loggedin_user->domain . $bp->blogs->slug . ‘/”>';
    
    _e( ‘My Blogs’, ‘buddypress’ );
    
    echo ‘‘;
    echo ‘
    
        ‘;
    
        if ( is_array( $blogs ) && (int)$blogs ) {
        $counter = 0;
        foreach ( (array)$blogs as $blog ) {
        $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”;
        $site_url = esc_attr( $blog->siteurl );
    
        echo ‘
        ‘;
        echo ‘‘ . esc_html( $blog->name ) . ‘‘;
    
        echo ‘
            ‘;
            echo ‘
            ‘ . __( ‘Dashboard’, ‘buddypress’ ) . ‘
    
            ‘;
            echo ‘
            ‘ . __( ‘New Post’, ‘buddypress’ ) . ‘
    
            ‘;
            echo ‘
            ‘ . __( ‘Manage Posts’, ‘buddypress’ ) . ‘
    
            ‘;
            echo ‘
            ‘ . __( ‘Manage Comments’, ‘buddypress’ ) . ‘
    
            ‘;
            echo ‘
    
        ‘;
    
        echo ‘
    
        ‘;
        $counter++;
        }
        }
    
        $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”;
    
        if ( bp_blog_signup_enabled() ) {
        echo ‘
        ‘;
        echo ‘root_domain . ‘/’ . $bp->blogs->slug . ‘/create/”>’ . __( ‘Create a Blog!’, ‘buddypress’ ) . ‘‘;
        echo ‘
    
        ‘;
        }
    
        echo ‘
    
    ‘;
    echo ‘
    
    ‘;
    
    }
    
    /*checks to see if the logged in user has any blogs. Saves the array values to $blogs and then saves the blog count to $blogcount. The IF statement then will be true if the value is 1 or more thus showing the link in the admin panel for the “My blogs”*/
    $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id );
    $blogCount = ($blogs);
    
    if ( bp_core_is_multisite() && $blogCount >= 1){
    add_action( ‘bp_adminbar_menus’, ‘bp_adminbar_mynew_blogs_menu’, 6 );
    }
    

    If anyone has a better (cleaner) way to do this please I would love to see it. I am just in the early stage of learning php so any help would be great. Thanks

    #99390
    Bowe
    Participant

    @pcwriter why don’t you just use percentages? If you have a fluid width and set the width of the negative margin-right and the content width.

    For example:

    div#sidebar {
    width: 25%;
    float: left;
    }

    div.content {
    float: right;
    margin-right: 26%;
    }

    The code above won’t work, but it’s to give you an idea!

    #99385
    Liesl Fawcett
    Participant

    @gunju2221 Yeah that’s what I’m looking for. Right now I have my members using mentions to get “notified” on the site. I wonder why it is only for messaging and other functions and not replies. Oh well, hopefully there will be a plugin for it soon.

    #99384
    barney373
    Member

    Solved it. Buddypress would not recognise BP-TinyMCE

    #99383
    Kevin Murray
    Participant

    There seems to be something wrong with the custom header process with the buddypress theme. I set up images with 1250 × 125 pixel dimensions, but they are then cropped and expanded, so part of the image is missing and the resolution is lowered. Most frustrating. Has anyone found this?

    #99381
    eor
    Member

    Please help!! I am lost. I’ve tried messing with everything I imagine would effect the sidebar widgets..specifically geared towards the buddypress. like i said i used the buddypress template pack. Please help.

    #99377
    Sofian J. Anom
    Participant

    Use this plugin to edit the group slug: https://buddypress.org/community/groups/bp-edit-group-slug/

    Michael
    Participant

    yeah i did visit the permalinks and updated it, still no luck.

    Hugo Ashmore
    Participant

    Just visiting the page flushes , you can also just do a quick save to ensure there are no messages along the lines of “this is what we would have written to your file if it had been possible”

    Michael
    Participant

    force a flushing of the cache in permalinks? How do you do that? And what do you mean by definitely write to the .htaccess?

    Hugo Ashmore
    Participant

    Have you visited the permalinks page to force a flushing of the cache and can you definitely write to the .htaccess file.

    #99365

    In reply to: Group settings create

    Robert
    Participant

    I activate orginal theme from buddypress and ………..
    http://awesomescreenshot.com/05b3zo315 :( other idea ?

    Michael
    Participant

    I didnt do a fresh install, what I did was transfer all the files from public_html folder to my computer and then transferrred it over to my new server via FTP. I then edit the wp_config file to fix the sql connection info. The front page loads up properly but all the links to any other folder like /members, /groups, etc end up with a 404 not found error.

    #99363

    In reply to: Group settings create

    Robert
    Participant

    I deactivate all plugins (not only from buddypress) and nothing.. now i wil try to recreate template files

    #99356

    In reply to: Domain.com and BP

    xiayou
    Member

    Thank you for the fast reply. I have installed the BuddyPress Template Pack, which updated the template so it could use the Buddypress.

    I am paying for the hosting, it is the basic Windows hosting at Domain.com.

    #99354

    In reply to: Domain.com and BP

    Virtuali
    Participant

    @xiayou, from looking at your website, it looks like you are using a custom theme. The first thing that comes to mind, is Are you using the BP template pack?

    Are you using a host that is free, or do you have a subscription?

    If you have a subscription, it is most likely not the host, more likely conflicting plugins, or a theme that just has a bad bug.

    Try switching to the BP default theme to see if the problem persists, so we can knock off the possibility that it is the theme.

    #99352
    Virtuali
    Participant

    @superfifi, you need to provide details on your question. You want to receive and email on a blog post comment, or a buddypress activity comment?

    #99349
    Virtuali
    Participant

    Yes, I do have the problem, except it does not overlap the sidebar. It is a flaw with the plugin, because it is meant for a buddypress default theme.

    For your sake since it is overlapping, try going into the plugin css, and setting the right margin position to “hidden”.

    Another option is to disable the sidebar in the right, but you might not want to do that option.

    You also can go into the easy albums forum, and search on similar topics to this issue.

Viewing 25 results - 44,301 through 44,325 (of 68,945 total)
Skip to toolbar