Search Results for 'buddypress'
-
AuthorSearch Results
-
November 1, 2010 at 7:38 pm #97155
Hugo Ashmore
ParticipantDarn it I could have added that ages ago is this really the first time it’s been noticed
November 1, 2010 at 7:15 pm #97153In reply to: Where did user interactions go?
cmccarra
Participant@r-a-y thanks for the reply.
I haven’t edited any of the theme files listed in point two. Could it be css changes I’ve made?
Thanks
November 1, 2010 at 7:09 pm #97152Paul Wong-Gibbs
Keymaster@modemlooper https://trac.buddypress.org/changeset/3334/
I’ve just put this into trunk. Thank you for the heads-up.November 1, 2010 at 6:41 pm #97150p3aul
ParticipantSame thing here!
After I installed buddypress and activate the default theme I viewed the webpage and there is nbo where to login as admin. When I logged out, I couldn’t log in again as admin. What gives? Is anyone going to answer this question?
PaulNovember 1, 2010 at 6:29 pm #97147Hugo Ashmore
ParticipantIsn’t the simple answer to copy across page.php fix up and submit? they are testing the child theme after all, it will perform as expected then, it may defeat the purpose of a child theme but fixes the issue from your perspective?
November 1, 2010 at 5:59 pm #97144modemlooper
ModeratorThe page.php file for the default theme is missing
comments_template();
So theme reviewers are rejecting BP child themes because they test a page and the comments are not showing. I’m not sure why now after months they have decided to reject any new themes due to this but it’s happening to themes already in the repo that i’m trying to fix.
November 1, 2010 at 5:43 pm #97142Paul Wong-Gibbs
KeymasterOld theme? Can you test if you have the option on bp-default? If you do, take a look at https://codex.buddypress.org/extending-buddypress/bp-default-theme-changelog/
November 1, 2010 at 5:12 pm #97132In reply to: How to show code in forum posts?
danbpfr
Participanti think there is a error in function bporg_decodeit
`$text = str_replace(”’, “‘”, $text);`
i also tried this code but it doen’t work for me. I added it in bp-forums-filter.php. Probably the wrong place.
November 1, 2010 at 4:40 pm #97130Sofian J. Anom
ParticipantFinally I got the solution by other way.
thanks, @travel-junkie, for your response.
November 1, 2010 at 4:32 pm #97129Paul Wong-Gibbs
KeymasterI don’t know what you mean. Plus I think we are reluctant to change the default theme at all before 1.3.
November 1, 2010 at 3:22 pm #97121In reply to: Getting rid of Gravatars …
Boone Gorges
KeymasterCool, I’m glad the first part worked!
Here’s a thrown-together-in-five-minutes filter to replace missing avatars with BP’s default mystery man. This probably won’t differentiate between user and group avatars, which you’ll have to sniff out of the $params array (in sort of the same way that I do with width and height). The basic idea is: if bp_core_fetch_avatar is not outputting any HTML, swap out the boolean false with the default mystery man.
`function bbg_no_avatar( $html, $params ) {
if ( !$html ) {
if ( $params )
$height = ‘ height=”‘ . $params . ‘”‘;if ( $params )
$height = ‘ width=”‘ . $params . ‘”‘;$default_image_url = WP_PLUGIN_URL . ‘/buddypress/bp-core/images/mystery-man.jpg’;
$html = ‘‘;
}return $html;
}
add_action( ‘bp_core_fetch_avatar’, ‘bbg_no_avatar’, 10, 2 );`November 1, 2010 at 3:17 pm #97120In reply to: Buddystrem Twitter Error
gregfielding
Participant@pisanojm – just making sure you saw this.
November 1, 2010 at 12:57 pm #97115In reply to: Installing on WPMU 2.9.1
Paul Wong-Gibbs
KeymasterBP 1.2.5.1 I think was the last version that worked with WP 2.9. However, I would strongly encourage you to upgrade your client’s site to WP 3.0 so you can use the latest version of BuddyPress. Otherwise you will be missing out on security fixes and other bug fixes.
November 1, 2010 at 12:06 pm #97110In reply to: Can’t locate “buddypress-enable.php”
rich! @ etiviti
Participantwhat version of bp and wp? as this might be severely out-of-date and not needed.
November 1, 2010 at 12:00 pm #97108rich! @ etiviti
Participantnoting the version of IE helps. just uses jquery but i tested with IE8/9 and works.
November 1, 2010 at 8:51 am #97099In reply to: Header title tag for wp & buddypress pages
Gunjan Jaswal
ParticipantThanks a lot ervanerfian
adding add_filter( ‘wp_title’, ‘bp_get_page_title’, 10, 2 ); to functions.php worked for me
November 1, 2010 at 8:49 am #97098In reply to: Getting rid of Gravatars …
mistercyril
ParticipantHello Boone,
Thank you for your reply. I really appreciate getting an actual answer as I may be pretty comfortable working with WordPress but BuddyPress code has me a bit lost at the moment. I will Try this and post back.
About my quote, i’m sorry if it seemed “confrontational” but I guess its just my frustration talking. I’ve been asking about this and searching for months but could never find a rational solution.
Thanks again,
I’ll try it out now.November 1, 2010 at 8:40 am #97097Roger Coathup
Participant@leoplaw – if you check the simple:press forums further, you’ll find there are still outstanding issues in integrating with BuddyPress, around login and roles I think. My understanding is that they are talking about providing a solution in a future version of simple:press
@mercime
ParticipantYou have to resolve permalink issue in WordPress before installing BuddyPress.
Apache Module mod_rewrite must be enabled for “pretty permalinks” so check with your webhost. Or, if you have access to the httpd.conf file, find #LoadModule rewrite_module modules/mod_rewrite.so and delete the # to uncomment itCheck out other WP configuration requirements before installing BP
https://codex.buddypress.org/getting-started/before-installing/#wp-configurationNovember 1, 2010 at 7:03 am #97094Leo Plaw
Participant@Paul Gibbs
It seems it is possible to integrate Simple:Press into the activity streams.
Integrate Simple:Press Forum into the BuddyPress Activity Stream! [Update
http://blog.slyspyder.com/2010/08/15/integrate-simplepress-forum-into-the-buddypress-activity-stream/and here
Integrating Simple:Press into BuddyPress Activity Stream
November 1, 2010 at 4:49 am #97092bizybee
MemberHey, so I’ve been looking at this problem myself in the past couple days.
I’m finding that WP blog comments that are held for moderator approval are not getting inserted into the activity stream, but blog comments that are auto-spammed (from the comment-blacklist), are showing up in the activity stream.
I just entered a trac ticket about this if you’re interested in more details, or have something to add: https://trac.buddypress.org/ticket/2699
November 1, 2010 at 1:03 am #97086In reply to: html on profile page? can it be done?
Narada Das
ParticipantThanks @r-a-y – I guess then that I do need TinyMCE to edit the extended profile fields for better security.
Im trying to understand why from the above linked articles it seems to be a problem to activate by plugin. Even Boone has trouble with it! And yet we have TinyMCE in posts and in Eventpress events etc. What is so different with the extended profile fields?
And if this is really a problem without a good solution – is there some way to at least allow BP members to add pictures to their profile page?October 31, 2010 at 10:56 pm #97081In reply to: Member Profile Alignment
October 31, 2010 at 8:06 pm #97079In reply to: html on profile page? can it be done?
r-a-y
KeymasterYes, it can be done, but do you want to risk exposing your site to vulnerabilities?
If you still want to do this, add the following code snippet in your theme’s functions.php:
`remove_filter( ‘bp_get_the_profile_field_value’, ‘wp_filter_kses’, 1 );`
October 31, 2010 at 7:59 pm #97077In reply to: moderating avatars
r-a-y
KeymasterThere was just a thread about this:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/change-another-users-avatar/#post-77667 -
AuthorSearch Results