Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 17,576 through 17,600 (of 69,106 total)
  • Author
    Search Results
  • Next guess is some plugin conflict.

    Best way to figure that out is to systematically disable one plugin at a time, until the issue corrects itself.

    We definitely strive to keep both BuddyPress and bbPress compatible with as many plugins and themes as possible, so if anything needs fixing on our end, we’ll make sure it happens.

    #178348

    In reply to: testing translations

    danbp
    Participant

    Hi @jf_trumpet,

    the plugin you’re speaking about is intented for load your BuddyPress with translations provided by translate.wordpress.org

    This means that if you’re site is in swedish, the plugin will automatically upload the swedish BP translation. Or similar if you’re site is in italian.

    If you need some multilingual settings you have to use another plugin, like WPML for example.

    More about BuddyPress translation and internalization here.

    Normally you declare the site language from within the wp-config.php file.
    For ex. define (‘WPLANG’, ‘it-IT’);
    If you just want to test ONE other language, simply change this define to another language.

    Be also aware that you can only define one language in wp-config.

    #178333
    julianprice
    Participant

    @cuisire_ceo It depends but found the following most useful after googling so much to only come up with garbage past dated scraped/syndicated content.

    The most important question is what the Purpose for Your BuddyPress Use/Community. The only way I have wrapped my head around it is to work backwards but with that said…

    Heres What I consider some of the Best Round Ups and Buddy Pep to Follow:

    Tammie Lister @mercime http://wordpress.tv/?s=tammie have some great talks and also have just googled for any slides from the various presentations. If not able to see video.

    Also check out her book that only seems most current: https://buddypress.org/2013/11/buddypress-theme-development-by-tammie-lister/

    Boone Gorges @boonebgorges http://wordpress.tv/speakers/boone-gorges/ and most notable this presentation: http://wordpress.tv/2013/12/10/boone-gorges-herding-cats-with-the-buddypress-activity-component/
    or anything Boone from Youtube via WordPressNYC great example http://www.youtube.com/watch?v=gPpU3ySo5q0 in understanding of GROUPS.

    Of course John James Jacoby jjj @johnjamesjacoby (sorry jjj: he rambles often:) but found this useful in just using a simple profile I believe this is the session maybe others can reference it “WordPress Profiles” http://wordpress.tv/2013/10/04/john-james-jacoby-everything-you-want-to-know-about-bbpress-and-buddypress/

    So you probably thinking Wow but you have not answered anything on installing 🙂 Believe me it helps so much to think big picture of your whole community than start working backwards as single page/components to map similarities to constructed it.

    This is one of the most useful tutorial of theme I had purchased which the developer went MIA but it was an AHA moment for me. Because Buddypress are Custom Post Types thats Relational Data/Fields
    http://www.youtube.com/watch?v=Cc3Er4S4EeQ & http://www.youtube.com/watch?v=s7b9TFw6ZAQ
    . I know what you thinking this is not my intent or not relevant. Start watching #2 at 2:16 to think in context of Simalirty.

    Finally, The only other best other video tutorial that just a setup instruction. I have found online was BuddyBoss (don’t even own the Theme) http://www.youtube.com/playlistlist=PL5kBYJSuuvEj3KqG_lnAa9MxpZumjtTdY

    and Mathis on VIMEO. The biggest problem is finding the resources in a central location so I have to track down.

    I hope that helps as resources. It really would depend on how you see your community of your people and how its relational in context

    #178322

    In reply to: Profile – Sorry!

    To be completely upgrade proof, I would make an mu-plugin out of it.

    https://codex.wordpress.org/Must_Use_Plugins

    That way it’s always running when BuddyPress is running, and it will never go away unless you explicitly tell it to by deleting or modifying your code.

    Look! You’re writing your own plugins today!

    #178321

    In reply to: Profile – Sorry!

    lloan
    Participant

    Thanks for the reply John ^-^! I think that 2nd line totally did the job, lol.
    I tried putting it in /wp-content/plugins/buddypress/bp-custom.php and it didn’t work.
    I tried putting it in my theme’s function.php and it worked there.

    Do you think it would be upgrade proof if I put it in bp-custom.php instead? If so, do you think I put it in the wrong location ._. – I tend to be a total klutz.

    #178320

    In reply to: Profile – Sorry!

    Something like that should work! I cleaned it up a little for you, and fixed a typo.

    function bbg_change_profile_tab_order() {
    	$bp = buddypress();
    	$bp->bp_nav['profile']['position']  = 60;
    	$bp->bp_nav['activity']['position'] = 50;
    	$bp->bp_nav['friends']['position']  = 40;
    	$bp->bp_nav['groups']['position']   = 30;
    	$bp->bp_nav['settings']['position'] = 10;
    	$bp->bp_nav['forums']['position']   = 20;
    }
    add_action( 'bp_setup_nav', 'bbg_change_profile_tab_order', 999 );
    #178312
    craftersuniversity
    Participant

    Dear BuddyPress Staff, why is bp_redirect_canonical() causing redirect loops?

    #178311
    craftersuniversity
    Participant

    I found the problem, at least for my site. Weirdly enough, what worked for my spit image development site, did not work for my live site, so i had to do a lot of detective work.

    Try this: Install latest version of BuddyPress. Got to the FTP server and folder /wp-content/plugins/buddypress/bp-core/ and in that folder, download bp-core-actions.php. Open it in notepad, search for “add_action( ‘bp_template_redirect’, ‘bp_redirect_canonical’, 2 );” and delete that line. Save the file and upload it to the same place on the FTP server, overwriting the original. Hokus Pokus, your redirect problem should be gone.

    It took me most of my day to narrow it down to this, but finally i got BuddyPress to completely work as far as i can see. All BuddyPress pages are accessible, i can add activities and so on. Hope this works for you.

    The reason this problem popped up with the latest versions of BuddyPress is clear if you read this page where the 1.9 version update details claims that “We’ve brought back bp_redirect_canonical() for helping redirect to top level/default members sections.” Why this is needed i haven’t got the foggiest…

    #178296
    Matt Rad
    Participant

    I think that this was a conflict with BuddyPress docs. I uninstalled that, and it seems to work fine now.

    #178289

    In reply to: Profile Link

    lloan
    Participant

    Couldn’t you use the Buddypress Log-in widget? It shows the users profile image and their username that links back to their profile page.

    #178281

    @Henrywright

    I’m using Enfold as the theme, I’m using a variety of plugins such as datafeedr, cubepoints, social media stuff (facebook button, acurax social media, events plugin, countdown plugin, adsense, askimet, buddypress mymood, social login, jetpack, and a couple more. The versions include: Buddypress 1.9.2 and WordPress 3.8.1 running Enfold theme.

    What do you think?

    SaoWolfe
    Participant

    I’m having the same problem, except that it doesn’t matter what the user role is, the topic content isn’t visible.

    Here’s an example link: http://www.knhub.ca/groups/communications-community-of-practice-cop/forum/

    When you click on the topic all it shows is the topic title (as was the case in @robgranholm’s example #1) and the option to reply. But reply to what??? The content isn’t visible to see. I have administration access so it’s not a role issue.

    I would also really appreciate some support as this is a HUGE problem for me right now. FYI, I am using a membership plugin…Membership Premium. But it doesn’t seem to be a role or content protection issue since I’m an admin.

    Here’s the link to me earlier Buddypress Forum post:https://buddypress.org/support/topic/content-of-topics-in-group-forums-not-displaying/


    @robgranholm
    : I hope you don’t mind me piggy-backing on your post here since it’s essentially the same issue.

    Thanks,
    Scott

    #178273

    If the Activity meta table really was deleted, you’ll want to restore that table (and likely the entire database) from before your attack occurred.

    If you have evidence of BuddyPress being the attach vector (and not simply that your site is running BuddyPress) please follow the instructions provided at the link below:

    https://codex.wordpress.org/FAQ_Security

    #178266
    bigtreesjoe
    Participant

    This is a supported and well documented wordpress installation configuration (https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory).

    There is a very specific caveat in the buddypress installation documentation stating that it Does Not support this sort of wordpress installation.
    See the fifth bullet down on https://codex.buddypress.org/getting-started/before-installing/before-installing/

    I thought that perhaps with the revised URI re-write, this WP installation configuration might finally be supported

    #178264
    Paul Wong-Gibbs
    Keymaster

    Er. I’m not sure this is a valid WordPress setup?

    How exactly does BuddyPress not work with this at the moment? Does everything else work fine, including blog permalinks?

    #178241
    craftersuniversity
    Participant

    I just tried deactivating, deleting, installing and activating BuddyPress, and now it seems to work with the latest version….i’m still a bit skeptical though, but why don’t you try it?

    #178240
    Joss Winn
    Participant

    I suppose another way of looking at this would be to find the code in BuddyPress that injects hyperlinks into certain text, such as profile tags. Where would I find this?

    Thanks.

    #178227
    Henry Wright
    Moderator

    Hi @a77a77

    Try rtMedia’s BuddyPress Media plugin:

    https://wordpress.org/plugins/buddypress-media/

    #178225

    In reply to: custom members loop

    mykrabuilding
    Participant

    i noticed the “buddypress sitewide activity widget” plugin achieves what I want to do but I cant figure out how despite crawling through the code for hours…

    #178211
    Joss Winn
    Participant

    Hi again,

    I still have this problem. I’m sure it’s BuddyPress that is the cause, as it still occurs with different themes and with all other plugins deactivated. When I deactivate BuddyPress, the problem stops.

    Run your mouse over the links on this page, and you’ll see the issue: http://blogs.lincoln.ac.uk/test/

    I was wondering whether it is a legacy of running BuddyPress since alpha/beta and whether there is an old setting in the database or something that I might look out for. Where are the BuddyPress settings stored in the database? None of the wp_bp tables look like they hold global settings.

    In my wp-config.php file, I have the following:

    define( ‘BP_ENABLE_ROOT_PROFILES’, true ); //removes the /members/ slug
    define( ‘BP_DEFAULT_COMPONENT’, ‘custom-profile’ ); //defaults to profile page rather than activity stream of a user
    define( ‘BP_ENABLE_USERNAME_COMPATIBILITY_MODE’, true ); //for LDAP compatibility
    define ( ‘BP_IGNORE_DEPRECATED’, true );
    define(‘BP_USE_WP_ADMIN_BAR’,true);

    Thanks for any advice,
    Joss

    #178204
    marknadsafeteam
    Participant

    Hello @henrywright!

    I´m not sure I understand what you mean, this is from the file buddypress/bp-core/bp-core-avatars.php (inactive). Iam using the theme twenty twelve, can it have something to do that wordpress is installed local?

    #178203
    marknadsafeteam
    Participant

    Hello @henrywright!

    I´m not sure I understand what you mean, this is from the file buddypress/bp-core/bp-core-avatars.php (inactive). Iam using the theme twenty twelve, can it have something to do that wordpress is installed local?

    #178198

    In reply to: custom members loop

    mykrabuilding
    Participant

    i think i am! ive created a function in functions.php as follows:

    /**
      * get user last update timestamp
      */
    function get_user_last_update_timestamp() {
    	$update = get_usermeta( bp_get_member_user_id(), 'bp_latest_update' );
    	$activity = bp_activity_get_specific( array( 'activity_ids' => $update['id'] ) );
    	$activity = $activity[0];
    	$time = $activity->recorded_time;
    	echo $time;
    }

    and im calling it from my page template (which contains a stripped down version of the code from the members-loop.php file) as follows:

    <?php
    /*
    Template Name: In Out Page
    */
    ?>
    <?php get_header(); ?>
    <div class="sleeve_main">
    	<div id="main">
    		<h2><?php the_title(); ?></h2>
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) ) ) : ?>
        <?php do_action( 'bp_before_directory_members_list' ); ?>
      <ul id="members-list" class="item-list" role="main">
      <?php while ( bp_members() ) : bp_the_member(); ?>
         <li>
          <div class="item-avatar">
             <?php bp_member_avatar(); ?>
             <?php bp_member_name(); ?>
          </div>
           <div class="item">
            <div class="item-title">
                <?php if ( bp_get_member_latest_update() ) : ?>
                   <span class="update"><?php bp_member_latest_update(array( 'view_link' => false )); ?></span>
                <?php endif; ?>
            </div>
            <div class="item-meta"><span class="activity"><?php get_user_last_update_timestamp(); ?></span></div>
            <?php do_action( 'bp_directory_members_item' ); ?>
            </div>
            <div class="action">
                <?php do_action( 'bp_directory_members_actions' ); ?>
           </div>
           <div class="clear"></div>
       </li>
     <?php endwhile; ?>
     </ul>
     <?php do_action( 'bp_after_directory_members_list' ); ?>
     <?php bp_member_hidden_fields(); ?>
    <?php else: ?>
       <div id="message" class="info">
          <p><?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p>
       </div>
    <?php endif; ?>
    		</div> <!-- main -->
    </div> <!-- sleeve -->
    <?php get_footer(); ?>
    #178196

    In reply to: custom members loop

    mykrabuilding
    Participant

    Thanks again @henrywright!
    unfortunately being only intermediate with php and new to buddypress Im still having trouble getting this to work. Ive tried creating a new function with the code you provided and calling it from my template page, also tried including the code directly into the template but no luck so far. Any other tips you could give me?
    Cheers

    #178187
    fkapnist
    Participant

    Here is a similar plugin that encourages the use of real names instead of login words…..

    https://wordpress.org/plugins/buddypress-real-names/

Viewing 25 results - 17,576 through 17,600 (of 69,106 total)
Skip to toolbar