Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 64,951 through 64,975 (of 94,540 total)
  • Author
    Search Results
  • #96105
    Hugo Ashmore
    Participant

    cool cheers.

    this is/was the relevant ticket I guess?

    https://trac.buddypress.org/ticket/2203

    #96104

    In reply to: Add Author Bio to Post

    Round World Travels
    Participant

    @nahummadrid thanks much, worked like a charm

    Josh McKenney
    Participant

    You’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.

    Paul Wong-Gibbs
    Keymaster

    To 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.

    Josh McKenney
    Participant

    Paul, 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!

    #96095

    In 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

    #96083
    Hugo Ashmore
    Participant

    Too 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

    #96082
    Roger Coathup
    Participant

    We 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

    #96078
    Mario
    Participant

    push

    Greetings 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.com

    #96072
    Hugo Ashmore
    Participant

    @rogercoathup

    That 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.

    #96068
    danbpfr
    Participant

    this button was existing in the early buddypress.org versions (before bbpress inclusion)
    can you test these changes on a english install

    Fixed ticket is here: https://trac.buddypress.org/ticket/2680#comment:1

    #16048

    Topic: User-guide

    in forum Miscellaneous
    Mikael Boldt
    Member

    I’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

    #96066
    Roger Coathup
    Participant

    hats 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)

    #96064
    Roger Coathup
    Participant

    ok… 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.

    #96060
    Hugo Ashmore
    Participant

    It 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

    #96059
    Roger Coathup
    Participant

    @hnla – posting simultaneously !

    #96058
    Roger Coathup
    Participant

    follow 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.

    #96055
    Hugo Ashmore
    Participant

    /buddypress/bp-core/bp-core-cssjs.php

    #96053
    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?

    #96052
    Mario
    Participant

    PHP 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+lenny3

    Its 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

    #96051
    danbpfr
    Participant

    Hi Roger,
    the admin bar is constructed in bp-core/bp-core-adminbar.php
    the css file for this is in bp-themesbp-default_inccssadminbar.css

    notepad++ is my friend

    #96048
    Roger Coathup
    Participant

    p.s. we have the problem in 1.2.5.2 as well

    #96047
    Roger Coathup
    Participant

    @clojel

    You 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?]

    #96045

    In 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 :)

Viewing 25 results - 64,951 through 64,975 (of 94,540 total)
Skip to toolbar