Search Results for 'buddypress'
-
AuthorSearch Results
-
February 13, 2014 at 6:33 pm #178354
John James Jacoby
KeymasterNext 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.
February 13, 2014 at 3:39 pm #178348In reply to: testing translations
danbp
ParticipantHi @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.
February 13, 2014 at 3:52 am #178333In reply to: BuddyPress Training or Tutorials
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
February 12, 2014 at 6:27 pm #178322In reply to: Profile – Sorry!
John James Jacoby
KeymasterTo be completely upgrade proof, I would make an
mu-pluginout 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!
February 12, 2014 at 5:56 pm #178321In reply to: Profile – Sorry!
lloan
ParticipantThanks 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.
February 12, 2014 at 5:25 pm #178320In reply to: Profile – Sorry!
John James Jacoby
KeymasterSomething 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 );February 12, 2014 at 2:42 pm #178312In reply to: Redirect loops on groups and profiles
craftersuniversity
ParticipantDear BuddyPress Staff, why is bp_redirect_canonical() causing redirect loops?
February 12, 2014 at 2:41 pm #178311In reply to: Redirect loops on groups and profiles
craftersuniversity
ParticipantI 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…
February 12, 2014 at 10:44 am #178296In reply to: BuddyPress xProfiles ACL alternative?
Matt Rad
ParticipantI think that this was a conflict with BuddyPress docs. I uninstalled that, and it seems to work fine now.
February 12, 2014 at 8:03 am #178289In reply to: Profile Link
lloan
ParticipantCouldn’t you use the Buddypress Log-in widget? It shows the users profile image and their username that links back to their profile page.
February 11, 2014 at 11:53 pm #178281In reply to: ERROR: Your reply cannot be created at this time.
trainingforamarathon
ParticipantI’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?
February 11, 2014 at 10:45 pm #178277SaoWolfe
ParticipantI’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,
ScottFebruary 11, 2014 at 9:16 pm #178273In reply to: Server overloaded. SQL injection and BP in logs
John James Jacoby
KeymasterIf 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:
February 11, 2014 at 5:54 pm #178266In reply to: WordPress in it's Own Directory for BP2.0?
bigtreesjoe
ParticipantThis 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
February 11, 2014 at 5:14 pm #178264In reply to: WordPress in it's Own Directory for BP2.0?
Paul Wong-Gibbs
KeymasterEr. 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?
February 11, 2014 at 9:14 am #178241In reply to: Redirect loops on groups and profiles
craftersuniversity
ParticipantI 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?
February 11, 2014 at 8:29 am #178240Joss Winn
ParticipantI 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.
February 10, 2014 at 11:14 pm #178227In reply to: site like behance.net with buddy press?
Henry Wright
ModeratorFebruary 10, 2014 at 10:32 pm #178225In reply to: custom members loop
mykrabuilding
Participanti 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…
February 10, 2014 at 12:59 pm #178211Joss Winn
ParticipantHi 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,
JossFebruary 10, 2014 at 7:26 am #178204In reply to: Not working avatar crop tool, buddypress + wordpress
marknadsafeteam
ParticipantHello @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?
February 10, 2014 at 7:25 am #178203In reply to: Not working avatar crop tool, buddypress + wordpress
marknadsafeteam
ParticipantHello @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?
February 10, 2014 at 4:27 am #178198In reply to: custom members loop
mykrabuilding
Participanti 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(); ?>February 10, 2014 at 3:59 am #178196In reply to: custom members loop
mykrabuilding
ParticipantThanks 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?
CheersFebruary 9, 2014 at 9:47 pm #178187fkapnist
ParticipantHere is a similar plugin that encourages the use of real names instead of login words…..
-
AuthorSearch Results