Search Results for 'buddypress'
-
AuthorSearch Results
-
October 22, 2010 at 5:39 pm #96105
In 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 3:29 pm #16052Mohd Kurniawan Zakaria
ParticipantGreetings all!
my name is kurnia, i’m a newbie here. i need help from all of buddies here to solve my problem. after installing buddypress plugin, my website look like this. why is it happen? could someone help me? i give my website link here since cannot post a picture.. http://www.mkrichs.com. Plz help me ya..i’m really appreciate all your kind help. tqvm
best regards,
kurnia
http://www.mkrichs.comOctober 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 1:05 pm #16048Topic: User-guide
in forum MiscellaneousMikael Boldt
MemberI’m in the process of establishing a BuddyPress website and would now like to have a simple user manual, or a “Getting Started” page.
is there anybody who have a good one I can copy / get inspiration from?
thanks
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
October 22, 2010 at 11:52 am #96053In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
Participant@chouf1 – yes, I know where the adminbar.css file is. Coda is my friend

The question was, why is adminbar.css being included in other themes (even none child ones) on a multisite network? What’s injecting it, and how do we turn it off.
e.g. My theme doesn’t explicitly link to adminbar.css, here’s the snippet from the header.php:
`
<link rel="stylesheet" type="text/css" media="all" href="” />
<link rel="pingback" href="” />
<?php
if ( is_singular() && get_option( ‘thread_comments’ ) )
wp_enqueue_script( ‘comment-reply’ );wp_head();
`No explicit inclusion of adminbar.css!
But, here’s what actually gets rendered in the browser:
`
`
The unwanted link to adminbar.css has been injected.
I assume it must be something in wp-head() doing it – is there a hook to turn it off?
October 22, 2010 at 11:41 am #96052In reply to: Buddypress Memory Overload
Mario
ParticipantPHP Memory Limit is 128MB
Newest Versions at all (WP 3.0.1 and BP 1.2.6)
PHP 5.2.6
mysql 5.0.51a-24+lenny3Its a root server with debian lenny.
if you want to look at the complete phpinfo, you can do this here: http://mein-deal.com/phpinfo.php
I think the problem is not the memory usage of php, but the usage of the mysql server.
Thanks a lot
October 22, 2010 at 11:35 am #96051In reply to: Buddypress 1.2.6 adds extra padding-top
danbpfr
ParticipantHi Roger,
the admin bar is constructed in bp-core/bp-core-adminbar.php
the css file for this is in bp-themesbp-default_inccssadminbar.cssnotepad++ is my friend
October 22, 2010 at 11:24 am #96048In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
Participantp.s. we have the problem in 1.2.5.2 as well
October 22, 2010 at 11:22 am #96047In reply to: Buddypress 1.2.6 adds extra padding-top
Roger Coathup
ParticipantYou shouldn’t really mod the core files, as they’ll be overwritten if you upgrade. Is there any filter you can hook on to instead as an interim solution?
Certainly though, this should be added to the trac as a potential bug to be looked at.
We have the same problem with child themes in secondary sites – we’ve turned off the admin bar, we don’t have any admin bar css being included in our child theme, but still it pulls in admin bar css code from bp-default and inserts the unwanted padding.
[As an aside: does anyone know where the code is that’s injecting the admin bar css include into the header of child themes? Is it a hook on wp-footer?]
October 22, 2010 at 11:19 am #96045In reply to: Who Owns BuddyDev ?
Anonymous User 96400
Inactive@whitbyglennk
There is no WP ethos of free software for all. With all the licensing discussions going on, most people have completely misunderstood what it was all about. Free (as in the GPL software license) only means that any further development of GPL software has to be published under the same license (if the software is being released) and that, once you have the software, you can do whatever you please with it. Free does not mean, though, that you can get access to this software without paying. It’s perfectly ok to charge for GPL software.Most developers, who charge for a plugin or premium themes, still give back to the community by answering questions in forums or uploading other plugins and themes to the WP repository. For some plugins 50+ hours have been spent on development. That’s a lot of money and time right there, but people still expect not to pay anything.
I guess we’ll be seeing more and more paid plugins and themes crop up over the next year. It’s not a bad thing, it’ll give users more choice (there usually is a free alternative around somewhere) and if someone buys a plugin/theme, then afterwards you can expect great support, which does not always happen with a free plugin.
Just me 2 cents

-
AuthorSearch Results