fel64 (@fel64)

Forum Replies Created

Viewing 25 replies - 851 through 875 (of 1,001 total)
  • @fel64

    Member

    In functions.php, find the get_profile_info_keys() function …

    Much neater to pluginise it like the avatar plugin has done than to hack around in the core files, but that’s the solution now anyway.

    I’m not sure how the hook ardentfrost used works specifically but the sensible thing for it to do would be to pass the infokeys array as a parameter (just like the allowed tags hook), in which case you could easily add onto whatever was already in the array. If someone’s interested it might be worth testing, again as the neatest/least problematic way of doing this.

    In reply to: bbpress future

    @fel64

    Member

    No idea. I doubt they’d announce features before they’re ready – that’s a fairly stupid strategy for software. Check out trac if you want to see what’s being worked on and download the latest SVN releases if you want it early (and potentially buggy).

    @fel64

    Member

    This sounds like a bozo problem. Go to your Profile page, click on Edit, and look at the value of the bozo field. If this value is “1”, you require a minor fix: https://bbpress.org/forums/topic/822?replies=10

    In reply to: German Language

    @fel64

    Member

    You have to set the language in config.php. Open this file and look for line #41. Change it

    FROM define('BBLANG', '');

    TO define('BBLANG', 'de');

    @fel64

    Member

    Maybe the permissions/nonces are screwed up? If bbPress is set to use WP functions it might be worth reuploading those.

    @fel64

    Member

    An invoice has been sent to your billing address for $215.00 to cover the support costs.

    =D Glad you got your solution!

    @fel64

    Member

    You should install the bbpress-fix plugin, then change the field to 0 (no quotes) and save. This will hopefully fix things. The plugin only prevents you being marked as bozo, but it won’t unmark you (which is why you have to do that yourself).

    Don’t reinstall yet. :)

    @fel64

    Member

    Sounds like a bozo problem…? Open the profile of the troubled account, go to the “Edit” page, and see if there’s a 1 in the bozo field. If there is, you need the fix-bbPress plugin. https://bbpress.org/forums/topic/822?replies=10

    I might have the wrong end of the stick entirely though.

    By the way, Nola, any chance you could help me with some .htaccess code? I’ve been having trouble making it work with WP and got no help on their forums.

    In reply to: Freshness Linked

    @fel64

    Member

    The only thing better than that is a “go to first new reply” link. :)

    Out of the corner of my eye I thought I saw some code for “views” in a thread, in the 1.0-alpha version. There’s a chance it’ll be in 1.5 maybe? :)

    There’s also my “has a new reply” plugin: https://bbpress.org/plugins/topic/45?replies=5

    In reply to: Freshness Linked

    @fel64

    Member

    Not sure how to do that specifically, however here’s a quick rip of Sam Bauer’s pagination plugin that’ll add a double-forward arrow to the end of each topic name linking to the latest post. Copy it into a text file, save it as something.php and upload.

    <?php
    /*
    Plugin Name: Link to last Post
    Plugin URI:
    Description: Adds page links to topic lists
    Author: fel64
    Version: 0.7
    Author URI: http://www.loinhead.net/
    */

    if (!function_exists('is_tags')) {
    function is_tags()
    {
    return is_tag();
    }
    }

    if (is_front() || is_forum() || is_tags()) {
    add_filter('topic_title', 'fel_addlatestlink', 101);
    }

    function fel_addlatestlink($title)
    {
    global $topic;
    $felgtlpl = get_topic_last_post_link($topic->topic_id);
    $title = $title . ' <a href="' . $felgtlpl . '">&nbsp;&raquo;&nbsp;</a>';

    return $title;
    }
    ?>

    In reply to: Syntax questions

    @fel64

    Member

    My assumption is that they’re in place for localisation purposes. I don’t know for sure.

    @fel64

    Member

    Maybe it just recounts occasionally, or did you try recounting tags/topics to fix this earlier on?

    @fel64

    Member

    Yes, you should be. If you’ve cleared the old cookies for bb and WP, then logging out should work just as well as logging in? Hmm.

    @fel64

    Member

    but now I can’t log out of bbpress?

    This is because when you click “log out”, it clears the NEW version of the cookies, but when checking if you’re logged in it checks both the new and the old version. The old version is never cleared.

    To do that, you have to clear your cookies. In FF, pressing Ctrl + Shift + Del gives you access to clear them, in IE you have to go to Tools > Options or something.

    But this probably means it’s working!

    @fel64

    Member

    As long as you integrated from the start, no? Are you using the same database for WP and bb? In your config.php, did you add details for these settings:

    bb->wp_table_prefix
    bb->wp_home
    bb->wp_siteurl

    Another way to tell is, did it use your WordPress name for your admin account when you installed?

    @fel64

    Member

    Might be worth making a trac ticket for it here: https://trac.bbpress.org/ Log in with the details you use here. :)

    In reply to: Plugin: bbMenu 1.1

    @fel64

    Member

    I don’t understand, what does this plugin do? Screenshots would help.

    re-write the plugin to use jQuery?? (This is used in the next bbPress version)

    Does it work with 1.0-alpha, then?

    @fel64

    Member

    It does, cheers Trent.

    @fel64

    Member

    You have to put the time in your config.php that is that of the server.

    Do you really? Or have I misunderstood this completely?

    bbPress’ time functions no longer insane

    bbPress constrained you, the person installing bbPress, to set it’s internal timezone to match exactly that of the server it was running on.

    That’s ridiculous.

    With bbPress 0.8, all that has changed. You can set bbPress’ timezone to anything you like completely independent of where you are and where your server is.

    @fel64

    Member

    No, but with the 1.0-alpha release you can add subforums.

    Go to the Profile Page, click the Edit link, change the Member Title.

    @fel64

    Member

    What’s the new error?

    @fel64

    Member

    Thanks for this Sam, looking at it I also made a plugin using the Simple Onlinelist which will highlight any new posts made since the last time someone logged in. :) Waiting to have it approved as a plugin so I can upload.

    @fel64

    Member

    You will have to make changes to some core files to make this work properly, as they are in different subdomains.

    Find your bbPress config.php file and add these lines:

    //try to sync cookies
    $bb->cookiedomain = '.mpm.org.au';
    $bb->cookiepath = '/';

    Now go to your wordpress folder, open wp-settings.php.

    #line 190

    FROM

    define('COOKIE_DOMAIN', false);

    TO

    define('COOKIE_DOMAIN', '.mpm.org.au');

    Make sure that you make note of this change to wp-settings.php. Every time you upgrade wordpress this change will be overriden and you will have to make this change again.

    @fel64

    Member

    Tegolino, are you also motiongrapher? Because I believe there was someone here called motiongrapher looking for help with motiongraphics.it too.

    Why is that line even there? Is it necessary? You may be able to just comment it out.

    @fel64

    Member

    At a wild guess from memory it’ll be in /bb-includes/formatingfunctions.php :)

Viewing 25 replies - 851 through 875 (of 1,001 total)