Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 21,601 through 21,625 (of 69,210 total)
  • Author
    Search Results
  • #163069
    dainismichel
    Participant

    thnx for the vid, Boone rocks!

    #163067
    danbpfr
    Participant

    @anton-naydenoff

    it seem that you’re working on a local install.
    Maybe your local settings for php are not correct. First of all, check MAMP or WAMP or what else, if php gettext module is loaded.
    Check also that your wp-config file contains your language definition (wp_lang bg_BG)
    You may also read here, if previous things are OK
    https://codex.buddypress.org/developer/customizing/customizing-labels-messages-and-urls/

    #163066
    feeldesign
    Participant

    Hi
    Thanks
    I’d already tried that and nothing
    Did it again so yo ucan see. The register page link form “create an account” is wrong, the page is http://retiredandkicking.com/index.php/register/ but it’s looking for http://retiredandkicking.com/register/
    How do I correct this? Is the register page supposed to have content, as it seems to have none at all
    Can I pass login details privately?
    James

    #163063
    bp-help
    Participant

    @feeldesign @akukskuks
    Deactivate all plugins other than BuddyPress and revert to either bp-default theme or Twenty Twelve and see if the problem persists then report back here. I suspect it is either a plugin, or theme but I won’t speculate. I just know I have not encountered this and I have about 30 installs on my test server, I do not however have that buddyboss theme so I have no way of testing it so its up to you to see if that theme is the issue.

    #163062
    feeldesign
    Participant

    Thanks
    Very odd. I’m not sure what to expect on an install, a lot of the documentation I’ve found seems to relate to older versions, which work differently? However the pages that wwre created automatically seem blank with no content at all.
    Really hoping to get this sorted!

    #163054

    In reply to: BuddyPress 1.7.1

    bp-help
    Participant

    @boonebgorges @djpaul @johnjamesjacoby @r-a-y
    Thanks for the update guys. 🙂

    #163053

    In reply to: BuddyPress 1.7.1

    Asynaptic
    Participant

    W00t! Thanks so much to the BP team! 🙂

    bp-help
    Participant

    @jhulianni
    Please provide more info when requesting support. See this sticky topic:
    https://buddypress.org/support/topic/when-asking-for-support-2/
    Looks more like an issue in your theme from the error you posted.

    #163038
    mareksgregs
    Participant

    All right so,

    1. I created a new theme folder in wp-content/themes
    2. Then I created style.css with the following in it,

    /*
    Theme Name:     The Buzz
    Theme URI:      http://site.com
    Description:    Child theme for Buddypress Default
    Author:         Name here
    Author URI:     http://site.com
    Template:       bp-default                             
    Version:        0.1.0
    */
    
    @import url("../bp-default/style.css");
    
    #contentwide
    {
    margin: 5px 35px 0;
    font-size: 1.2em;
    width: 880px;
    float: left;
    display: inline;
    height: 400px;
    }
    
    body {
    background-color: #eaeaea;
    background-image: url(../images/background.gif );
    background-repeat: repeat-x;
    background-position: top left;
    color: #555;
    font-size: 12px;
    font-family: Arial, Tahoma, Verdana, sans-serif;
    line-height: 170%;
    max-width: 1250px;
    margin: 0 auto;
    width: 95%;
    }
    
    #site-generator {
    font-weight: bold;
    color: rgb(54, 54, 54);
    margin: 20px 20px;
    text-align: right;
    text-shadow: #fafafa 1px 1px 0;
    }
    
    #footer-widget-area div.widget-area > ul {
    height: 110px;
    float: left;
    margin-right: 2.5%;
    width: 23%;
    }

    3. Added that file to the folder I just made.
    4. Activated the Child theme in Dashboard -> Appearance -> Themes

    And that’s about it. Nothing happened.

    danbpfr
    Participant
    #163033

    In reply to: Remove profile links

    bp-help
    Participant

    @praisehim
    The answer is in my previous response. Most likely its a theme, plugin, or custom code you may have introduced. You may need to revert back to a twenty twelve theme or bp-default theme, and deactivate all plugins other than buddypress. If you created a file in wp-content/plugins named bp-custom.php you also need to make sure the code is between opening and closing php tags like so:

    
    <?php
    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    ?>
    
    #163028

    In reply to: Remove profile links

    praisehim
    Participant

    True. I am having the same problem with BuddyPress 1.7 and WordPress 3.5.1. This is definately a bug.

    #163026
    bp-help
    Participant

    @jamesonblake
    See this sticky topic before asking for support:
    https://buddypress.org/support/topic/when-asking-for-support-2/
    You need provide us with more info before we can aid you!

    #163018
    Scott
    Participant

    Finally found the fix for this so in case anyone else needs it. Add the below to bp-custom.php

    
    /* This fixes the Multisite avatar problem */
    function nfm_bp_avtar_upload_path_correct($path){
        if ( bp_core_is_multisite() ){
         //   $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, 'upload_path' );
    		$path = ABSPATH . 'wp-content/uploads/';
        }
        return $path;
    }
    add_filter('bp_core_avatar_upload_path', 'nfm_bp_avtar_upload_path_correct', 1);
    
    function nfm_bp_avatar_upload_url_correct($url){
        if ( bp_core_is_multisite() ){
            $url = get_blog_option( BP_ROOT_BLOG, 'siteurl' ) . "/wp-content/uploads";
        }
        return $url;
    }
    add_filter('bp_core_avatar_url', 'nfm_bp_avatar_upload_url_correct', 1);
    
    #163019
    careythegreen
    Participant

    OK @bphelp – I’ve discovered some of my own answers. I see that the @name is the user name they chose and cannot be changed. And… I just noticed the grey area of options below the standard WP options, which of course are the options for buddypress. So… poking around long enough I’ve answered my own questions.

    #163016
    ProfC
    Participant

    Hi, I have the same problem, even if I didn’t move the site. Many users of my social network have lost their Avatar and Gravatar. Instead of the original image I can see a broken link icon. If I try to upload a new image I cannot do it, It gives me back a black frame. The Avatar directory is the default one, wp-content/uploads/avatars. Should I change this directory and where?

    Buddypress 1.7
    WP 3.5.1

    #163014
    aces
    Participant

    @fagiano1973
    What did you try exactly?

    There is a problem with buddypress.org and older ‘code’ settings in posts. The ` at the begginning and end should not have been included – so there should not be a character on the same line before add_action or after the final }

    ( I would repeat the function here but the last time I did that buddypress.org changed again and the original looked better – EDIT: see http://pastebin.com/sSBGjPNi )

    It is difficult to diagnose what is probably a css problem with the information you’ve given. To help find or define the problem more precisely try using the developer tools in Chrome, Safari or Internet Explorer, or use Firebug with Firefox, or Opera’s Dragonfly

    #163011
    bp-help
    Participant

    @careythegreen
    Unless you have introduced some custom code then there is a link in the toolbar just like the one that appears on buddypress.org. Hover over howdy USERNAME, profile/edit. This is pretty standard so it should be there. If you want to add a a direct link to save confusion then use this code in your header.php:
    http://pastebin.com/Eg2HCKrM
    wrap it in a div and style as you wish!

    #163008

    In reply to: Can't create a group

    luccame
    Participant
    #163004
    akukskuks
    Participant

    Having the same problem here, James. Can’t create any groups! Does anyone have some advice for us??

    partytrotter
    Participant

    @bphelp, thanks a lot for the help, but I tried adding that line and it didn’t do much :S Here is what my code looks like without the line, where should I add it? Also, just to be sure I am modifying the right file, i took the members-loop.php in the folder of the current theme I am using, is that correct?

    <?php

    /**
    * BuddyPress – Members Loop
    *
    * Querystring is set via AJAX in _inc/ajax.php – bp_dtheme_object_filter()
    *
    * @package BuddyPress
    * @subpackage bp-default
    */

    ?>

    <?php do_action( ‘bp_before_members_loop’ ); ?>

    <?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) ) ) : ?>

    <div id=”pag-top” class=”pagination”>

    <div class=”pag-count” id=”member-dir-count-top”>

    <?php bp_members_pagination_count(); ?>

    </div>

    <div class=”pagination-links” id=”member-dir-pag-top”>

    <?php bp_members_pagination_links(); ?>

    </div>

    </div>

    <?php do_action( ‘bp_before_directory_members_list’ ); ?>

    <?php cc_get_displaymode(‘members’)?>

    <?php do_action( ‘bp_after_directory_members_list’ ); ?>

    <?php bp_member_hidden_fields(); ?>

    <div id=”pag-bottom” class=”pagination”>

    <div class=”pag-count” id=”member-dir-count-bottom”>

    <?php bp_members_pagination_count(); ?>

    </div>

    <div class=”pagination-links” id=”member-dir-pag-bottom”>

    <?php bp_members_pagination_links(); ?>

    </div>

    </div>

    <?php else: ?>

    <div id=”message” class=”info”>
    <p><?php _e( “Sorry, no members were found.”, ‘cc’ ); ?></p>
    </div>

    <?php endif; ?>

    <?php do_action( ‘bp_after_members_loop’ ); ?>

    #162997
    fagiano1973
    Participant

    @aces : Thank you for your help but it don’t work. I recevied fatal error message


    @hnla
    : i am sorry, buddypress 1.7 wordpress 3.5.1 bbpress 2.3.1 Browser : Chrome last version.

    thank you

    #162994
    aces
    Participant

    It’s not clear what your problem is, so if the following isn’t any help then can you state what theme you are using and a URL where the problem can be seen?

    https://buddypress.org/support/topic/buddybar-background-color-overlap/#post-161001 ?

    #162984
    briffel
    Participant

    Hi @mercime, the groups are currently hidden, but the problem is that everything appears twice.

    So it says All groups twice etc. and it’s like this one every page.

    Is there a way to stop this happening?

    #162983
    kukac7
    Participant

    I have a similar problem.
    Last vanilla WP / BuddyPress / bbPress.
    Hostgator is a repository of the problem.
    Specifically it:
    http://cyberdurer.com/sotephd/groups/csoport/forum/topic/teszt/

    Thanks for your help.

Viewing 25 results - 21,601 through 21,625 (of 69,210 total)
Skip to toolbar