Search Results for 'buddypress'
-
AuthorSearch Results
-
October 22, 2010 at 7:33 pm #96122
Roger Coathup
Participant@chouf1 –
It’s a baffling decision by the core team – I don’t know why they thought it was reasonable to break the design of every child theme that’s been based on the bp-default parent.
bp-default was not a standalone theme, it was a parent to hundreds of child themes. There was a responsibility to keep it delivering what those child themes had been built to expect.
As @chouf1 says, if this couldn’t be done – the upgrade should have been clearly labelled with a strong unequivocal warning.
It wouldn’t be too late, if they fixed this immediately, and upgraded bp-default so it maintains it’s existing behaviour. If they want to add new features, put them where they belong – in a new theme – don’t change the behaviour of the existing one.
October 22, 2010 at 7:26 pm #96121In reply to: Time Offset still present in BP 1.2.6
Paul Wong-Gibbs
KeymasterIf @paulhastings0 can confirm it works, I’ll put it in.
October 22, 2010 at 7:21 pm #96119In reply to: Member profile buttons unavailable
r-a-y
Keymaster@intimez – Just checked Private Messages for Friends Only and the plugin still works fine on BP 1.2.6.
BP 1.2.6 made some changes to the way buttons are rendered.
If you modified the member header in your child theme, you’ll need to look at the changes made to /members/single/member-header.php and apply them.
October 22, 2010 at 6:55 pm #96117In reply to: Error 500 on fresh install of BP with WP3.0
anaxent
MemberI Just installed a fresh copy of wp 3.0.1 and bp 1.2.6 and received a 500 error using
System Linux
PHP Version 5.2.12
Server API CGIWhen I switch my php version to 4.4.8 buddypress installs fine then I switch back to 5.2.12 I start to get the 500 errors again.
I am running this install on a shared hosting platform which I do not have access to the apache error logs to really figure this out. I was wondering if anyone else is having this same issue.October 22, 2010 at 6:48 pm #96116In reply to: Buddyvents – New Events Plugin
Anonymous User 96400
Inactive@mark211
We have a support forum at http://shabushabu.eu where we answer all support questions related to Buddyvents, so once you purchased the plugin you’d get access to the forums and get all the info you need to adjust Buddyvents.October 22, 2010 at 6:29 pm #96114In reply to: BuddyPress-Links 0.3 FINAL is here at last
danbpfr
ParticipantCould you write in a recent tread ? This one was opened 8 mounth ago.
MrMaz posted today to announce v. 05 !!!October 22, 2010 at 5:53 pm #96108In reply to: BuddyPress-Links 0.3 FINAL is here at last
PJ
Participant@mrmaz , Could you please revise the Create a Link page. Categories are smushed together and like Microsoft Notepad when text isn’t wrapped to the page. It makes it difficult for users to add links in an orderly way.
Instead, could each category be on a new line? Thank you.
October 22, 2010 at 5:51 pm #96107In reply to: Time Offset still present in BP 1.2.6
Hugo Ashmore
ParticipantThinking the issue lies with:
/messages/messages-loop.php
bp_message_thread_last_post_date()
function lives in:
/buddypress/bp-messages/bp-messages-templatetags.php: line 288would guess at the filter
bp_format_time(get_date_from_gmt(
is possibly to blame but will have to see if the ticket sheds light on it
October 22, 2010 at 5:39 pm #96105In reply to: Time Offset still present in BP 1.2.6
Hugo Ashmore
ParticipantOctober 22, 2010 at 5:33 pm #96104In reply to: Add Author Bio to Post
Round World Travels
Participant@nahummadrid thanks much, worked like a charm
October 22, 2010 at 5:24 pm #96101Josh McKenney
ParticipantYou’re a saint. I understand if you can’t get to it. If it helps at all, see where I drilled down to in the code on page two of this forum topic: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/group-creation-error-are-you-sure-you-want-to-do-this.
Also, is this plugin sanctioned as a goto method for creating buddypress themes? I know you are a core developer in Buddypress, but is this a Buddypress initiated plugin or something you saw as a need? I want to make sure i tackled the theming correctly. I was forced to go this way because I needed to use directorypress inside of buddypress and had to meld two designs together instead of starting with a child theme of bp default.
October 22, 2010 at 5:16 pm #96099Paul Wong-Gibbs
KeymasterTo be honest I think the template pack broke for one of the 1.2.5 releases. I have a lot on my schedule at the moment; I will try to get time this weekend to at least figure out what’s broken, even if I can’t release an update.
October 22, 2010 at 5:10 pm #96096Josh McKenney
ParticipantPaul, it was happening before 1.2.6 upgrade… I have seen some other reports, are there any resolutions to the matter overall or anywhere you can point me? Thanks for the quick reply!
October 22, 2010 at 5:06 pm #96095In reply to: Add Author Bio to Post
Nahum
Participant@gearupandplay To limit the text try this:
for your functions.php :
function Wanna_Limit_Text($Text,$Min,$Max,$MinAddChar) { if (strlen($Text) < $Min) { $Limit = $Min-strlen($Text); $Text .= $MinAddChar; } elseif (strlen($Text) >= $Max) { $words = explode(” “, $Text); $check=1; while (strlen($Text) >= $Max) { $c=count($words)-$check; $Text=substr($Text,0,(strlen($words[$c])+1)*(-1)); $check++; } } return $Text; }this for you template :
post_author )),10,90""); ?>Where 90 is the number of characters and you just adjust that.
Good luck
October 22, 2010 at 4:35 pm #96083In reply to: Buddypress Memory Overload
Hugo Ashmore
ParticipantToo early to bump

I’ll ask for the sake of it this is a pure install no plugins activated?
I can’t really see what the issue might be but then would normally be looking at logs or running ‘top’ to see processes working
Can’t think what to suggest other than ensure an absolutely clean install just running BP nothing else.
I wouldn’t leave your php.ini public like that for too long
October 22, 2010 at 4:31 pm #96082Roger Coathup
ParticipantWe just went with a loop like this:
`
<?php $args = array (
‘action’ => ‘new_blog_post’,
‘max’ => 20); ?>-
<?php
while (bp_activities() ) : bp_the_activity(); ?><?php $blog_id = bp_get_activity_item_id();
if ((int)$blog_id == 1) continue; ?>
`
@boonebgorges has talked about adding ‘exclude’ parameters to some of the loop functions, which could make this much neater – I don’t know the progress / state of that work
October 22, 2010 at 4:00 pm #96078In reply to: Buddypress Memory Overload
Mario
Participantpush
October 22, 2010 at 1:20 pm #96072In reply to: Buddypress 1.2.6 adds extra padding-top
Hugo Ashmore
ParticipantThat nasty hack shouldn’t be an issue and it is not so much nasty as plain illegal to place style tags as children of ‘body’
This is the ticket I raised ages ago, well I and another but wasn’t aware it was a duplicate, the style rules never were required as the adminbar was removed and didn’t require any styles to help it along, the ticket was moved here there and everywhere, but I forced the issue by moving it back from 1.3 to 1.2.6 and requested that it be dealt with as it was a simple fix so in 1.2.6 those style tags don’t exist. previously I was having to use
remove_action(‘wp_footer’, ‘bp_core_override_adminbar_css’);
If I was hiding the adminbar for logged out view.
October 22, 2010 at 1:11 pm #96068In reply to: RSS activity feed is blank (solved)
danbpfr
Participantthis button was existing in the early buddypress.org versions (before bbpress inclusion)
can you test these changes on a english installFixed ticket is here: https://trac.buddypress.org/ticket/2680#comment:1
October 22, 2010 at 12:45 pm #96066In reply to: RSS activity feed is blank (solved)
Roger Coathup
Participanthats off to @Chouf1 – a. for solving it, and b. for ‘tagging’ the thread as solved – we should all get into that discipline (although a button to do it automatically would be nicer)
October 22, 2010 at 12:34 pm #96064In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
Participantok… two solutions:
1. the nasty hacky – adding define (‘BP_DISABLE_ADMIN_BAR’, TRUE) in our theme’s functions.php
Why nasty hacky: well it inserts inline CSS into our footer to hide the adminbar and remove the padding; that’s nastiest enough in itself, but it also uses !important to override anything we actually want to do – even nastier.
2. the cleaner – adding remove_action( ‘init’, ‘bp_core_add_admin_bar_css’); in our theme’s functions.php
That does the job!
Unfortunately, we have to add that in the functions.php of any additional theme we want to use. Let’s get all this presentation stuff in the default theme where it belongs (not in the core)… I’ve said this a lot recently.
October 22, 2010 at 12:21 pm #96060In reply to: Buddypress 1.2.6 adds extra padding-top
Hugo Ashmore
ParticipantIt should be in the theme not in core files but it needs to load at ‘init’ ? or does it? is it that it must load before theme loads
October 22, 2010 at 12:15 pm #96059In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
Participant@hnla – posting simultaneously !
October 22, 2010 at 12:15 pm #96058In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
Participantfollow up – it’s actually being added in the function:
bp_core_add_admin_bar_css()
in bp-core-cssjs.php
I can’t help but think this should be in the default theme, not in the core files.
October 22, 2010 at 12:07 pm #96055In reply to: Buddypress 1.2.6 adds extra padding-top
Hugo Ashmore
Participant/buddypress/bp-core/bp-core-cssjs.php
-
AuthorSearch Results