Search Results for 'buddypress'
-
AuthorSearch Results
-
February 10, 2014 at 7:26 am #178204
In 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…..
February 9, 2014 at 3:17 pm #178181In reply to: Add activity type
meg@info
ParticipantFebruary 9, 2014 at 11:36 am #178178In reply to: BuddyPress Pages not showing in Menu editor
meg@info
ParticipantHi,
Click ‘Screen Options’ on the menu page ( at the top right of the page ) and check Buddypress.
February 9, 2014 at 3:47 am #178171In reply to: video commenting
fkapnist
ParticipantI use the tubepress plugin for video… You can show many thumbnails on your site and play them in a light-box popup… or in their original YouTube page – which solves your user comment issue without having to make new templates
the Activity Plus plugin allows users to post videos with their comments, just like Facebook, but for BuddyPress….
February 9, 2014 at 3:08 am #178167In reply to: How can i delete my account
fkapnist
Participant@modemlooper : A BuddyPress member cannot delete their account. But a WordPress administrator can delete a user from the dashboard.. If you have been following the recent EU moves on the Internet, such as forcing sites to post “We use cookies on this site” dumb messages, it will probably soon be necessary for members to be able to cancel their own accounts, for the sake of privacy…
February 9, 2014 at 2:30 am #178164In reply to: BuddyPress Version: 1.9.2 update
fkapnist
ParticipantI Finally got it. I deactivated all my plugins except BuddyPress and I switched to a safe theme (TwentyTwelve)…. I was then able to update to BuddyPress 1.9.2 with no problem.. Except that some plugins lost their settings and had to be re-configured….. So why hasn’t anyone come up with a simple WP plugin that automatically deactivates all plugins for updates and then reactivates them again?.. hmmm…. sometimes the obvious solution is overlooked.
February 8, 2014 at 10:21 pm #178157In reply to: video commenting
tolusage
ParticipantIf you are looking for an UI that allows only video commenting, then I am afraid you will have to code a plugin that does just that.
But given the plethora of bp plugins that support video, you might just give these plugins a try:
https://wordpress.org/plugins/buddypress-media/
https://wordpress.org/plugins/buddypress-activity-plus/Any of these plugins allow your users to upload videos in comments.
Hope this helps 🙂
February 8, 2014 at 8:32 pm #178150tolusage
ParticipantHi @BuddyBoss,
Try and play with this plugin if you really want to import user data to custom CRM applications (it’s a little old and was developed for another WP plugin):
https://wordpress.org/plugins/simple-crm-buddypress-xprofile/Feel free to download that plugin, study its source, implement whatever customisations you want as per Woopra and test to see if it solves your issue.
P.S. If you end up modifying that plugin to accommodate other important user data fields, don’t forget to rename it to something else and block off ALL its internal call for updates (whenever the parent plugin is pushed for updates, otherwise ALL your changes will disappear should you mistakingly push through with the update).
February 8, 2014 at 8:24 pm #178148In reply to: Members page white space
Aaron Courtyard
ParticipantSo i resolved the error by rolling back to buddypress 1.9.1. 1.9.2 doesn’t work for me!
February 8, 2014 at 8:23 pm #178147In reply to: Buddypress Default Theme Missing from 1.9.2?
aces
ParticipantTry
add_filter( 'bp_do_register_theme_directory', '__return_true' );added to bp-custom.phpSee https://codex.buddypress.org/themes/bp-default-theme-moving-forward-with-bp-1-9/ also http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/ and https://buddypress.trac.wordpress.org/ticket/5212
Alternatively, what about https://github.com/modemlooper/Buddy-Default
Buddypress 2.0 should have a new template pack – see https://buddypress.trac.wordpress.org/milestone/2.0
February 8, 2014 at 1:42 pm #178127In reply to: Change Avatar Problem
Henry Wright
ModeratorOn your site? I haven’t got one
On here (BuddyPress) I’m @henrywright
February 8, 2014 at 12:00 am #178110GANESH
Participanthello shaunokeefe, were you able to modify the buddypress email notification settings for the group email? The plugin “welcome pack” only has options to modify for the “personal messages” though I didnt get it to work.
February 7, 2014 at 10:25 pm #178108In reply to: Spam destroyer plugin & Buddypress
Itookmyprozac
ParticipantHi,
Thanks for the quick answer!
Yes, both enviroments are multisite (sorry, forget to mention that).
The obvious solution is to try another plugin but I am very happy with the results of spam destroyer after a year of use.
I should mention that I’m running another (multisite) website with buddypress 1.5.5 & Spam destroyer 1.3.2 and everything is working fine.
February 7, 2014 at 8:42 pm #178101In reply to: Temporary deactivating BuddyPress possible?
BuddyBoss
ParticipantLikely in your s2member setup, you are integrating some BuddyPress functionality and since BP is deactivated the s2member plugin is throwing up an error. So now you are locked out of your admin.
There is a simple solution if you have access to FTP.
Just rename your ‘wp-content/plugins’ folder to ‘wp-content/_plugins’. Note the underscore.
This will instantly deactivated all plugins, as WordPress will not be able to load the plugins directory. Then you should be able to log in again. If you rename _plugins back to plugins, then your plugins will load again. So maybe rename s2member so it deactivates, then reactivate BuddyPress and then s2member after.
February 7, 2014 at 6:08 pm #178094tobylewis
ParticipantI wrote my own theme and am always trying to do things the right way but initially things were not working correctly with bbPress or BuddyPress. I now realise was my theme using the_excerpt rather than the_content on the special pages.
I’d read the topics in the buddypress codex on theme support but these mainly addressed the issue of altering pages using the template selection rather then explaining what a theme author needs to do to make their theme work properly with bbPress or BuddyPress. Just explaining how it injects its content into pages (by hooking the_content) is not immediately obvious to the newcomer.
In my theme I had been using is_singular() to know when to show content rather then expert and use parameterised preferences for each post type for when is_singluar() was false.
Simply changing this test to (is_singular() || is_page()) suddenly turned my theme from incompatible to reasonably compatible. The “/forums” slug still did not work properly but after searching around I discovered the is_bbPress() function and expanded the test to:
(is_singular() || is_page() || (function_exists(‘is_bbPress’) && is_bbPress()))
There may be other tricks and gotchas I haven’t found yet, but as I say it would be really nice to have a topic directed specifically at theme authors to make sure they know what needs to be in place to make things work.
February 7, 2014 at 4:30 pm #178090In reply to: Temporary deactivating BuddyPress possible?
yanicklandry
ParticipantOur buddypress plugin main plugin was deactivated by accident and now we can no longer access any content on the website or login ad admin to reactivate it.
I am not sure what to do. We had a backup of the entire wordpress installation prior to that mistake and it was restored in full. This is from the error log:
PHP Fatal error: Call to undefined function bp_is_register_page() in /home1/tgscca1/public_html/wp-content/plugins/s2member/includes/classes/custom-reg-fields-4bp.inc.php on line 50
February 7, 2014 at 3:55 pm #178089In reply to: Group creation, bugging – privacy and roles
modemlooper
ModeratorLooks like your theme css is overriding BuddyPress.
February 7, 2014 at 2:04 pm #178085In reply to: >> French PO
danbp
Participanthi @aniclip
it’s not a bug, you just try to translate something that doesn’t exist in the original file !
The exact string is Notify group members of these changes via emailIf you’re using BP 1.9 the string to translate looks like this in the po file:
5912 #: bp-templates/bp-legacy/buddypress/groups/single/admin.php:26
5913 #: bp-themes/bp-default/groups/single/admin.php:26
5914 msgid “Notify group members of these changes via email”
5915 msgstr “Signaler par mail les changements aux membres du groupe”If you need the fr_FR translations, you can find them here:
https://i18n.trac.buddypress.org/browser/fr_FR/tagsAnd in the future, also here:
https://translate.wordpress.org/projects/buddypress/dev/fr/defaultAnd of course, any information about translating BP in french is on the french BuddyPress site: http://bp-fr.net
February 7, 2014 at 11:45 am #178075craftersuniversity
ParticipantI found a piece of code that cind of work when i put it in the child themes header.php:
<?php if ( function_exists( 'bp_message_get_notices' ) ) : ?> <?php if ( bp_is_active( 'messages' ) ) : ?> <?php bp_message_get_notices(); /* Site wide notices to all users */ ?> <?php endif; ?> <?php endif; ?>However, this makes it visible for all, even visitors that has not logged in, which is not what i want. I would like this to be visible only for logged in members, which means i have to add it too one of the php files in BuddyPress installation, but which one? Can anyone help me with this?
February 7, 2014 at 11:27 am #178073Hugo Ashmore
ParticipantOk what is not clear in that particular guide is the necessity of creating a new forum but selecting ‘category’ rather than ‘forum’ when you save/create it, this category is the groups forums parent and the slug that you would see appear in that select option, the one referenced ‘Groups Forum’ is simply an example name.
Have a read of this other guide to installing bbPress from new written by our own @mercime as it explains the steps very clearly:
The upgrading guide will need a little editing to make things clearer.
February 7, 2014 at 8:09 am #178070Xin46
ParticipantThank you Henry! the problem was resolved after i deleted the buddypress files from dreamweaver. Seems like i cannot run buddypress at all… would be great if someone could advise me on why it is so…
-
AuthorSearch Results