Search Results for 'buddypress'
-
AuthorSearch Results
-
April 29, 2011 at 11:12 am #111319
ewebber
ParticipantHi @boonebgorges it’s taken me a while to get round to this, after the last time I was a bit nervous to try it out.
I’ve reverted to an old .htaccess file, but it’s still not working, everything is fine until I switch off Buddypress and I get a 500 Internal server error. The only way back was to reactivate the plugin through the database.
Has anyone got any other ideas?
ThanksApril 29, 2011 at 11:10 am #111317mmln
MemberI use Super cache, it works but clears the cache every time some one logs in, then rebuild the cache from scratch….so painful.
https://wordpress.org/support/topic/plugin-wp-super-cache-when-admin-logged-in-cache-gets-deleted
April 29, 2011 at 8:13 am #111312In reply to: External and Group use of bbPress
Hugo Ashmore
ParticipantClosing this year old thread.
Theme announcements may be made in:
https://buddypress.org/community/groups/buddypress-themes/April 29, 2011 at 8:12 am #111311In reply to: ”BuddyPress is confusing”
Hugo Ashmore
ParticipantClosing this thread -newly created group for community theme promotions can be used to promote and group together offerings at:
https://buddypress.org/community/groups/buddypress-themes/April 29, 2011 at 8:03 am #111309In reply to: ”BuddyPress is confusing”
lauhakari
MemberLooks awesome.. Will give the framework a go!
April 29, 2011 at 7:32 am #111307In reply to: How To Remove Sub-Reply Button?
James
Participanthi @cnorris23 ,
fingers did not help, function returns:
Warning: preg_replace() [function.preg-replace]: Unknown modifier ‘.’ in …… on line 2
April 29, 2011 at 6:03 am #111300In reply to: How to create more fields in a group?
nit3watch
ParticipantI put this together some time ago though should still work. change gcode and dress code to what you would like. Save it as what ever you would like, with a php extension and place it in your plugins. Active and gl
I also greated some group map plugin some time ago thats floating around on the forums.. you would have to search or wait for gpress.`<?php
/*
Plugin Name: BuddyPress Group Dress Code
Plugin URI:
Description: This plugin adds an additional field to group creation for a dress code
Version: 1.0
Revision Date: June 25, 2010
License: GNU General Public License 2.0 (GPL) http://www.gnu.org/licenses/gpl.html
Author: Charl Kruger
Author URI:
*//* Show group dresscode number in group header */
$gdcode_show_dresscode_in_header = true ;/* – HERE BEGINS THE CODE – */
// create the form to add the field
function gdcode_add_dresscode_form() {
?>
<input type="text" name="group-dresscode" id="group-dresscode" value="” /><?php
}
add_action( ‘groups_custom_group_fields_editable’, ‘gdcode_add_dresscode_form’ );// Save the dresscode number in the group meta – perhaps use serialize() and maybe_unserialize()
function gdcode_save_dresscode( $group_id ) {
global $bp;if($bp->groups->new_group_id)
$id = $bp->groups->new_group_id;
else
$id = $group_id;if ( $_POST )
groups_update_groupmeta( $id, ‘gdcode_group_dresscode’, $_POST );
}// Get or return the dresscode number
function gdcode_group_dresscode() {
echo gdcode_get_group_dresscode();
}
function gdcode_get_group_dresscode( $group = false ) {
global $groups_template;
if ( !$group )
$group =& $groups_template->group;
$group_dresscode = groups_get_groupmeta( $group->id, ‘gdcode_group_dresscode’ );
$group_dresscode = stripcslashes( $group_dresscode );
return apply_filters( ‘gdcode_get_group_dresscode’, $group_dresscode );
}// show dresscode number in group header
function gdcode_show_dresscode_in_header( $description ) {
global $gdcode_show_dresscode_in_header;
if ( gdcode_get_group_dresscode() && $gdcode_show_dresscode_in_header ) {
$description .= ‘‘. __(‘Dress code’, ‘gdcode’).’:‘.gdcode_make_dresscode_for_group().”;
}
return $description;
}
add_filter( ‘bp_get_group_description’, ‘gdcode_show_dresscode_in_header’ );// show number for an individual group
function gdcode_make_dresscode_for_group() {
global $bp, $wpdb, $gdcode_args;$group_dresscode = gdcode_get_group_dresscode();
$group_dresscode = ‘‘.$group_dresscode.’‘;
return $group_dresscode;
}add_action( ‘groups_create_group_step_save_group-details’, ‘gdcode_save_dresscode’ );
add_action( ‘groups_details_updated’, ‘gdcode_save_dresscode’ );
?>`April 29, 2011 at 5:23 am #111299In reply to: ”BuddyPress is confusing”
Michael Eisenwasser
Participant@josh101. @mentions are confusing to 99% of users, for real. I have built lots of client sites and literally *every* client asks me WTF are @mentions. I tell them how it works and they say why doesn’t it just work like Facebook, and I pretty much have no response because I agree with them. Hence, http://www.buddyboss.com
April 29, 2011 at 5:21 am #111298In reply to: ”BuddyPress is confusing”
Michael Eisenwasser
ParticipantI have long thought BuddyPress was confusing, and so I decided to take on the task of building a theme that would solve every issue I have with BuddyPress. It can be downloaded at http://www.buddyboss.com.
1. Groups and Forums are combined in an INTUITIVE way on my theme. It finally makes sense!
2. @mentions are gone. In their place is a TRUE Facebook wall on every profile. Post on friend’s profiles and status updates with threaded comments. You’ve got to try it to see how sweet it is
3. Stripped out all of the nonsense that adds to BuddyPress’ general chaos, and what’s left is a simple and enjoyable experience.April 29, 2011 at 5:15 am #111297In reply to: External and Group use of bbPress
Michael Eisenwasser
ParticipantTry the BuddyBoss theme at http://www.buddyboss.com. It combines groups and forums in a way that is MUCH more intuitive than the default BuddyPress setup, no hacking required. I think a big issue with BuddyPress is that the layout of groups and forums is usually confusing to people. We’ve fixed that
April 29, 2011 at 5:11 am #111296Michael Eisenwasser
ParticipantHere’s the answer! It has always frustrated me how @mentions work in BuddyPress as I find it chaotic and confusing for users. So I built a theme that converts the @mentions system into a TRUE Facebook wall with post to profile and threaded replies. If you every need to, at any time you can deactivate our Wall Component from the dashboard and your content will revert to @mentions, You can download the theme at http://www.buddyboss.com.
April 29, 2011 at 5:06 am #111295In reply to: Buddypress and Wall/Guestbook Plugin
Michael Eisenwasser
ParticipantYes. The BuddyBoss theme at http://www.buddyboss.com has a true Facebook-style wall built in. It converts @mentions into an intuitive wall posting system with threaded replies.
April 29, 2011 at 4:58 am #111293Michael Eisenwasser
ParticipantYou might want to try the BuddyBoss theme at http://www.buddyboss.com. It has a built in Wall on user profiles. Images and video can be added via oEmbed for BuddyPress, and the wall functions like a true Facebook wall in terms of how the conversation flows. It converts @mentions into wall posts so the BP Gallery plugin could potentially be integrated if you know what you’re doing.
April 29, 2011 at 3:26 am #21630Topic: Path disclosure in BP 1.2.8
in forum How-to & Troubleshootingdanbpfr
ParticipantIs there any patch for this ?
http://www.htbridge.ch/advisory/path_disclosure_in_buddypress_wordpress_plugin.htmlApril 29, 2011 at 3:01 am #111287In reply to: image.php file for Buddypress theme
Famous
Participanthello @mercime I didn’t get your reply till much later. I ended up finding what you said above:
And it worked great, however I have one more situation I was hoping you could help me out with. I want to click:<p class="">the above and have it go to the next picture, instead of just showing the same image on the page only, any idea?
April 29, 2011 at 2:41 am #111286In reply to: CSS help: Ask A Question Button
LPH2005
Participant@hnla – as always – you are the champion of css. I totally misunderstood the custom.css file and was adding the css into the dialog box on the Sealight control panel labeled custom css: “Quickly add some CSS to your theme by adding it to this block.” Without even looking, I just figured it was building that custom.css file. Plus, if I didn’t add it into that box then the styling wouldn’t work. Silly me.
Now, in terms of the activity-inner styling … I’ve now added it all to the custom.css and still can’t get activity-inner to work. Sigh. I’ve left that code in the custom.css and it doesn’t show in firebug either.
http://www.thechembook.com/chemistrycircle
I was going to work on getting the styling of the bubble like I did here: http://www.thechembook.com/groups/advanced-placement-chemistry-learners/forum/topic/the-atom-fast-facts-a-summary-sheet/
April 29, 2011 at 1:15 am #111285In reply to: How to disable Gravatar completely?
Brandon Allen
ParticipantYou can easily change the default avatar in your dashboard under BuddyPress > General Settings. The reason it doesn’t use the WordPress avatar setting is because BuddyPress is designed to be it’s own site with it’s own settings. If you want to disable gravatar support completely you can set no_grav to true in your theme’s bp_core_fetch_avatar function calls. This will be made even easier when 1.3 is released.
April 29, 2011 at 12:40 am #111284In reply to: One login, multiple profiles
Hoodie Mark
ParticipantI need to do the exact same thing. @Matilde did you ever find an easy solution?
April 29, 2011 at 12:10 am #111283In reply to: How to disable Gravatar completely?
webmystery
ParticipantThank you everybody for the suggestions. I’m setting up a site for an artist community and I don’t want BuddyPress to assign (IMHO not very attractive) monster gravatars to the members at all. Perhaps a future version could be written to respect the WordPress setting for No Avatar.
April 28, 2011 at 11:19 pm #111279In reply to: True BP compatibility with Multisite
Brandon Allen
ParticipantThis functionality is currently being developed by @wpmuguru, but I don’t know that there has been any timeline published as far as a plugin release or it being included in core.
April 28, 2011 at 10:44 pm #111278In reply to: Avatar uploads fail on Buddypress Multisite
astromono
ParticipantI actually was able to fix it as well with your code. I tried it, but I think I’ll stick with just putting in the correct BP_ROOT_BLOG value for the site I’m running.
Now the only other issue that’s been cramping my style is the fact that the BuddyPress admin bar is overlapping on the wp-admin dashboard on all sites within my network.
April 28, 2011 at 9:31 pm #111275In reply to: Different profiles for different user types
Anthony
Member@beraike22, do u have a working example we can see? also I’m having issues with that plugin, when I enabled it, it seems like I would have to indeed modify it to show some plugins when i’m signed in. The problem with that is for troubleshooting purpose I can’t not be logged in, thus I want to test this out when asked to register or join. can you give me a bit more detail on how to achieve multiple profile types upon registration?
April 28, 2011 at 8:49 pm #111274In reply to: Notifications Number not going away
Brooker
MemberI have 1.2.8 and having the same issue, i took a look into pb-friends.php and the code seems correct…
global $bp;if ( isset( $_GET ) )
bp_core_delete_notifications_for_user_by_type( $bp->loggedin_user->id, $bp->friends->id, ‘friendship_accepted’ );
}
add_action( ‘bp_activity_screen_my_activity’, ‘friends_clear_friend_notifications’ );April 28, 2011 at 7:09 pm #111267In reply to: redirect to activity after login?
chrisreg1
MemberR-a-y – that doesn’t work for me unfortunately.
I am using the:
– latest version of WordPress 3.1.2
– Child theme of SuffusionAnd the latest plugins for Suffusion BP Pack (1.02), BuddyPress (1.2.
, and s2Member (3.5.7).Using the s2Member plugin settings, I have set my site to redirect users to a “Member Home” page upon logging in. This function used to work before I added BuddyPress + Suffusion BP Pack. However, since adding those plugins, I initially could not figure out why it no longer worked upon logging in. Currently, when a user logs in, the site just directs them to the main page (the default WordPress & site address). I disabled the other plugins and determined that it was BuddyPress handling the redirection.
So I made a bp-custom.php and added that code just to see if I can test the redirection function itself and it didn’t work. I even tweaked his code as well to try add_filter(“login_redirect”,”bpdev_redirect_to_profile”,100,3); Did I need to do anything else to activate the plugin or did it automatically run and link to BuddyPress?
Ultimately, it seems like I may have to implement a technique that onyx mentioned or something like http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/
Does anyone have any thoughts? Thanks!
April 28, 2011 at 6:29 pm #111263In reply to: Avatars Original Max not bein saved?
-
AuthorSearch Results