Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 45,426 through 45,450 (of 68,972 total)
  • Author
    Search Results
  • 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.

    @johnjamesjacoby

    #96121
    Paul Wong-Gibbs
    Keymaster

    If @paulhastings0 can confirm it works, I’ll put it in.

    #96119
    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.

    #96117
    anaxent
    Member

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

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

    #96116
    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.

    #96114
    danbpfr
    Participant

    Could you write in a recent tread ? This one was opened 8 mounth ago.
    MrMaz posted today to announce v. 05 !!!

    #96108
    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.

    #96107
    Hugo Ashmore
    Participant

    Thinking 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 288

    would 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

    #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

    #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

    #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

Viewing 25 results - 45,426 through 45,450 (of 68,972 total)
Skip to toolbar