_ck_ (@_ck_)

Forum Replies Created

Viewing 25 replies - 1,551 through 1,575 (of 2,186 total)
  • In reply to: bbPress.com

    @_ck_

    Participant

    Er, that’s TalkPress and I’d guess that it’s not going to be out until either very late this year or early next.

    Matt owns the domain but is doing something incredibly unprofessional with it for some reason I can’t fathom.

    @_ck_

    Participant

    It would be easier to disable the auto-link entirely for a post when is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.

    Disabling auto-link is something like: (untested)

    remove_filter('post_text', 'make_clickable');
    add_filter('post_text', 'make_clickable_if_not_code');
    function make_clickable_if_not_code($text) {
    if (strpos($text,'<code>')===false) {return make_clickable($text);}
    return $text;
    }

    [code] is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.

    Disabling auto-link is something like: (untested)

    remove_filter('post_text', 'make_clickable');
    add_filter('post_text', 'make_clickable_if_not_code');
    function make_clickable_if_not_code($text) {
    if (strpos($text,'<code>')===false) {return make_clickable($text);}
    return $text;
    }

    In reply to: Theme Editor

    @_ck_

    Participant

    Correct me if I am wrong but the “theme editor” in WordPress is simply a remote file editor for templates. Doesn’t do anything special other than let you edit a file directly on your server without having to use FTP (or shell).

    While it seems handy, if I am not mistaken it also requires you to chmod 777 your theme folder which is very dangerous on a shared server.

    I suppose bbPress will get the feature eventually because it’s so very simple. I would guess it could be ported from the WordPress code in probably an hour.

    In reply to: New bbPress BUGGY!!!

    @_ck_

    Participant

    You definitely need to post examples of bugs you encounter. There are numerous bug fixes in 0.9 vs 0.8

    Perhaps you are simply encountering plugin incompatibilities?

    “numerous link revisions” ???

    How can your url’s change unless you disabled slugs or visa/versa? That much didn’t change in 0.9

    In reply to: Reply Bug

    @_ck_

    Participant

    Uh oh, it looks like my bb-attachments is modifying other forms which makes no sense.

    I’ll have to investigate this.

    update: please try 0.1.1, see this post:

    https://bbpress.org/plugins/topic/bb-attachments/page/2/?replies=38#post-1223

    In reply to: My Private Forum

    @_ck_

    Participant

    Nice site but annoying flying ad.

    @_ck_

    Participant

    WP-Chunk ported to bbPress, inserts a break into long links so they wrap:

    https://bbpress.org/forums/topic/limit-long-words#post-9648

    @_ck_

    Participant

    Note that 755/644 is a false sense of security.

    I can write a file in any directory regardless of permissions on a server with posix support (any linux server) by being able to switch the PHP username to yours. However, Safe Mode and/or Open_base_dir will prevent the posix trick from working (unless of course the code is executing from your own directory)

    @_ck_

    Participant

    The proper header for the page apparently is not being sent until there is a logged in user.

    I’ll see if I can reproduce this. Is it in kakumei theme?

    Update: this works fine on my setup:

    http://bbshowcase.org/forums/topic/put-your-test-posts-here?bbtheme=kakumei#post-302

    You might have something sending whitespace before all the headers can be sent so the page encoding gets broken until the user is logged in. Are there any errors visible when you do a “view source” or any javascript errors?

    @_ck_

    Participant

    Each topic can be deleted at the bottom.

    There is also a “mass edit” plugin to delete all posts by a single users, etc.

    In reply to: Set Topic ID

    @_ck_

    Participant

    Not quite sure what you are asking/doing buy try adding global $topic; before your code if you find the function don’t know which topic is active.

    In reply to: Insurgency.cz forum

    @_ck_

    Participant

    That’s for a film or game right? Had me nervous for a minute there…

    @_ck_

    Participant

    Be sure to add it to the plugin browser so more people will see it:

    https://bbpress.org/plugins/requests/

    In reply to: User languages?

    @_ck_

    Participant
    In reply to: Profile hook/filter

    @_ck_

    Participant

    The profile page is very difficult if not impossible to hook into as it needs some work (and apparently might change by 1.0)

    You’ll have to do template edits.

    @_ck_

    Participant

    @_ck_

    Participant

    @_ck_

    Participant

    mod_rewrite will let you do that if you figure out the correct rule

    however you won’t be able to get it shorter than profile/username because just /username could be another page.

    @_ck_

    Participant

    I am getting better at routines to find non-english bbPress sites and have now added a few hundred more sites!

    (bbPress is being used in at least two dozen countries!)

    @_ck_

    Participant

    I put a ticket into trac about this a few months ago.

    https://trac.bbpress.org/ticket/779

    Changing the way it functions is not too difficult but it does have to be done via the core so unfortunately I can’t address it via a plugin. At least I dont think I can, not easily.

    Oh and forget a captcha ever being built into bbPress/WordPress. It will have to be done via plugin with a hook. Because the moment thousands of people have the same standardized captcha, that’s the moment it will be analysed to be broken by bots. As a plugin the method can be changed on a whim and vary from site to site easily. Besides, I’d rather have people do simple math than an awkward captcha.

    @_ck_

    Participant

    Add some numbers? Oh you mean to show position #

    Well the problem is I tinker with it from time to time.

    If I find a new site that’s not in the top 100 I’ll usually just queue it until next time but if it’s a biggie I will rebuild the list right away.

    Plus the number of posts is subjective and no indication of quality. I don’t really want to make that part a contest or people will start faking results and I’ll have to delete their listing entirely.

    @_ck_

    Participant

    I suspect this is the the same problem as you or someone else had with a non-standard template with bbpress.

    Make sure in your header.php template that you have

    <?php bb_head(); ?>

    just before the

    </head>

    or bbPress plugins won’t work properly (like you are seeing now)

    @_ck_

    Participant

    gerikg, I can help you with these questions easier if you post them on the plugin page for they are related.

    in bb-signatures you can simulate an HR by changing the border-top in the CSS

    go into the admin menu plugins->signatures and look down in the CSS area and change border-top:1px solid #aaa; to whatever you’d like. If you want it thicker, make 1px, 2px or more. If you want a different color, change the #aaa to any other color.

    @_ck_

    Participant

    Okay version 0.8.7 of this can now indicate forums with new posts:

    https://bbpress.org/plugins/topic/unread-posts/

    You will have to change the optional setting to true near the top of the plugin.

    It defaults to highlighting the title in blue but you can also change the css to append an icon, etc. instead.

    @_ck_

    Participant

    After some thought, it occurs to me I could make some (optional) code that would pre-check all the read topics lists for a user and see if the last topic had changed, and then build a list of forums affected.

    Interesting challenge, I might give it a shot.

Viewing 25 replies - 1,551 through 1,575 (of 2,186 total)