mr_pelle (@mr_pelle)

Forum Replies Created

Viewing 25 replies - 151 through 175 (of 217 total)
  • In reply to: jquery loading

    mr_pelle
    Participant

    @mr_pelle

    May I suggest another solution? bb_enqueue_script() is deprecated, you should first check if script is already included using wp_script_is() and then call wp_enqueue_script().

    add_action( 'bb_init', 'enqueueJQuery' );

    function enqueueJQuery() {
    if ( !wp_script_is( 'jquery' ) )
    wp_enqueue_script( 'jquery' );
    }


    mr_pelle
    Participant

    @mr_pelle

    I know they are not “regulars” anymore, but I was hoping someone could know if there were any update about their work here…

    I’ll try sending some emails…

    EDIT: sent to mdawaffe only, since I couldn’t find so1o and SamBauers email… any suggestion? My email is http://scr.im/mrpelle


    mr_pelle
    Participant

    @mr_pelle

    Here’s a more complete non-core-hacking solution:

    <?php
    /*
    Plugin Name: Customize User Profile
    */

    add_filter( 'get_profile_info_keys', 'customize_user_profile', 10, 2 );

    function customize_user_profile( $fields, $context ) {
    /**
    * Remove undesired fields
    *
    * Commented = left
    * Uncommented = removed
    */
    // unset( $fields['first_name'] );
    // unset( $fields['last_name'] );
    unset( $fields['user_url'] );
    // unset( $fields['from'] );
    unset( $fields['occ'] );
    unset( $fields['interest'] );

    /**
    * Add new fields
    *
    * Quoting functions.bb-core.php, line 906:
    * meta_key => (required?, Label, hCard property). Don't use user_{anything} as the name of your meta_key.
    */
    $fields['my_meta_key'] = array(
    false,
    __( 'My meta key' ),
    'text'
    );

    return $fields;
    }
    ?>

    Of course, as usual, replace < and > with angular parentheses.


    mr_pelle
    Participant

    @mr_pelle

    Thank you Kevin for the SAVEQUERIES trick!


    mr_pelle
    Participant

    @mr_pelle

    I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.

    Full background attribute: url("images/button-grad.png") repeat-x scroll left top #333333

    Wow, now background attribute is gone, so download links are nearly invisible… =P


    mr_pelle
    Participant

    @mr_pelle

    I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.

    Full background attribute: url("images/button-grad.png") repeat-x scroll left top #333333


    mr_pelle
    Participant

    @mr_pelle

    I don’t think Matt knows that we are changing the version manually. It would be nice to have that updated automatically, but I don’t have enough access to make that happen with subversion, so I just change it manually.

    I know, I know, I just thought it was funny that he did not even look at any last commit…


    mr_pelle
    Participant

    @mr_pelle

    Look who’s back! (changeset committer) Just a flash, though… (and he forgot to update trunk version ;-P)


    mr_pelle
    Participant

    @mr_pelle

    I had problems with it too: I had to set WP Super Cache to HALF ON or to add forum URL to Rejected URIs list…


    mr_pelle
    Participant

    @mr_pelle

    I agree with Zaerl. Documentation has been bbPress biggest lack since I knew it. There is also a 3-months-old ticket regarding PHPdoc and coding standards which has never moved on…

    I deeply esteem your work, Zaerl: it’s amazing what you were able to do with no documentation at all! And the fact that you consider your latest plugins as “toys” is… wow!

    Anyhow, we’d need more people with TRAC permissions to change the website (and to commit 1.0.3/1.1 patches too) and at the moment we just have a few…

    I’ll be happy to contribute with my (very little) experience and my (big) free time, but we need to know who stakeholders are, first.


    mr_pelle
    Participant

    @mr_pelle

    For one thing, a bunch of plugin coders have repeatedly requested access to updating their old plugin files and better access to maintaining their plugin’s “page” or information.

    Any plugin author can update his/her plugin. That problem didn’t arise.. where did you hear/read that from?

    Probably he was referring to the weeks (months?) when Plugins section was not synchronized with SVN. I wrote about it here, Zaerl did here and I don’t remember if any other plugin dev did it somewhere else.

    In an IRC meetup, Matt said that bbPress will start becoming a WP plugin near 1.2 or so.

    That milestone does not even exist! Anyhow it means they have to release 1.1 first, which unfortunately still has a load of open tickets…

    b) fork bbPress July 2010

    There is absolutely nothing legally or physically preventing you from forking bbPress right now or in July. You literally don’t need anyone’s permission, so go right ahead.

    If he could do that on his own, I think we would already heard about it. That kind of project definitely needs a team of more than just 1 dev!


    mr_pelle
    Participant

    @mr_pelle

    Swirl Unknowns, a plugin of mine, does the job too. :) I will release version 1.0 next week, probably on thursday or friday: it will feature a renewed configuration page and a bunch of other updates.


    mr_pelle
    Participant

    @mr_pelle

    Just contribute to trac, there are a few tickets pending for 1.0.3 milestone, contribute patches

    I wish my bbPress knowledge was better, so that I could commit (good) patches… imho most bbPress community isn’t able to contribute actively with patches, and I’m not talking about newbies. Most of 1.1’s and 1.5’s open tickets are not bugs, but enhancements, requiring deep knowledge of bbPress and of its coding standards (see also this ticket).

    As for 1.0.3’s pending tickets, one is not going anywhere till BackPress moves on and the other one is more or less frozen at tellyworth’s 3-weeks-old reply “I’ve tested this briefly and it seems to work”.

    EDIT:

    Also check https://trac.bbpress.org/ticket/1174#comment:3

    This means that 0.9 branch would no longer be supported.

    Well, that’s what the Download page said the first time I got here (March ’10): “The previous 0.9 branch of bbPress will be maintained with security related fixes until late 2010”. _ck_, are you really going to catch 0.9 before it falls into oblivion?


    mr_pelle
    Participant

    @mr_pelle

    Just a quick reminder, that we’ve now reached 6 months without a blog post on bbPress (13th Jan to 13th Jun).

    And we haven’t been able to type code on the forum for the last 3 weeks, and 30% of the pages in the new theme haven’t actually been ported over; and basic links in the header and footer are no longer working.

    Geez… this makes me damn the day I chose bbPress as forum software for my company…


    mr_pelle
    Participant

    @mr_pelle

    Prepend this code to line 233 of functions.bb-template.php:

    if ( 'favorites' != $item[4] )

    In reply to: Latest Discussion Page

    mr_pelle
    Participant

    @mr_pelle

    Using My Views plugin by _ck_ and activating its module named “Started/Participated Topics”, you will end up with a view named “Latest Discussions” which is exactly what you’re looking for.

    In reply to: Page not found

    mr_pelle
    Participant

    @mr_pelle

    woah, did anyone else get a weird error there telling us to “blame matt” ??

    The 503 error? Quite a few times, but it’s just temporary, like the 404 error when you try do download a plugin or bbPress release.


    mr_pelle
    Participant

    @mr_pelle

    Solved. =)

    In reply to: When bbpress 1.0.3?

    mr_pelle
    Participant

    @mr_pelle

    I think the next release is going to be 1.1 instead of 1.0.3. […]

    Not sure when 1.1 will be released. Maybe after all the 1.1 tickets are cleared up

    So we have to wait 2011 for 1.1, instead of maybe august for 1.0.3, since at the moment the former has got more than 6 times the number of tickets of the latter… not to mention those 3-yo tickets

    Trunk right now is a little bit unstable. There were a couple of search related bugs that were not fixed properly.

    I hope we’ve fixed those, at last! =)

    In reply to: where is it?

    mr_pelle
    Participant

    @mr_pelle


    mr_pelle
    Participant

    @mr_pelle

    […] Then replaced the code of .htaccess with the code in nicer-htaccess > activated plugin > activated permalinks name based option from admin panel.

    But got following error: […]

    Hi! It seems you did not read my installation instructions carefully:

    (1) FIRST activate name based permalinks

    (2) then perform automatic/manual update

    As for “name not allowed” on the server, do the same: go to bbPress admin panel and activate name based permalinks. It will generate the htaccess file automatically, if folder permissions are set. If not, set them or create the file yourself (you may leave it blank) and let bbPress do the rest. THEN you may perform (2).


    mr_pelle
    Participant

    @mr_pelle

    New weird text replacements: TRAC tickets!

    Oh, and forum header says: Welcome, username | | Log Out


    mr_pelle
    Participant

    @mr_pelle

    Would it be wrong to suggest that 1) moving from 0.9 to 1.0 wasn’t done yesterday and 2) shouldn’t we test before rolling out this stuff?

    I mean, Homepage being down for 3 days. Plugin directory not showing a months worth of updates. etc etc

    Sadly quoting… :(


    mr_pelle
    Participant

    @mr_pelle

    Code replacement takes place in the Plugins section too… https://bbpress.org/plugins/topic/facebook-like/faq/


    mr_pelle
    Participant

    @mr_pelle

    Plugins directory not updating: Fixed.

    Seems it’s not retroactive… I mean, Zaerl’s last plugins are now listed correctly, but all other plugins did not get updated (yet): it looks like my last plugins update was a month ago! =P

    Plugins section is finally up to date!! =)

Viewing 25 replies - 151 through 175 (of 217 total)