Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,676 through 60,700 (of 64,535 total)
  • Author
    Search Results
  • #59225
    LMD
    Participant

    Hmmm, great idea, but it doesn’t cope with complex plugins very well yet.

    For example, Avatar Upload and Private Messaging (which doesn’t even show up in the browser for some reason), where files need to be placed in different locations to the my-plugins folder.

    Still, useful to know when new versions of plugins come out.

    tisme
    Member

    > You have to change the template

    he-he that’s what I *had to* do initially. so, it appears not all the template_functions.php are ‘pluggable’.

    could the actual template be remade in such a way that most functions it uses everywhere (like post_time) to be pluggable (like the post_title), or it’s too late on the template level and core post_time() has to be modified to allow formatting filters to be applied?

    #56711

    In reply to: Plugin: Avatar Upload

    _ck_
    Participant

    I have found and fixed a bug that was preventing the display of the newly uploaded avatar:

    https://bbpress.org/plugins/topic/46/page/3?replies=48#post-400

    (no more sleep(3) needed)

    fel64
    Member

    Ooh. Probably. Nice idea.

    <?php
    /*
    Plugin Name: Freshlink
    Description: Turns freshness into a link to the latest post
    Author: tisme, fel64
    */
    function freshness_latestlink( $fresh ) {
    global $topic;
    $felgtlpl = get_topic_last_post_link($topic->topic_id);
    return "<a href='$felgtlpl'>$fresh</a>";
    }

    //add_filter('', 'freshness_latestlink', 101);
    ?>

    Unfortunately there doesn’t seem to be a filter for it – only for modifying the actual time, not the text output. Since topic_time() also directly writes to the HTML, you can’t modify it first. You have to change the template, from

    <?php topic_time(); ?>

    to

    <?php echo freshness_latestlink( get_topic_time() ); ?>

    tisme
    Member

    oh, implementing this as a plugin even cooler, thank you!

    is it possible modify it by a similar way just a little bit, so that “Topic Freshness” (topic_time() ?) would return a hyper-link to the topic_last_post_link()?

    #2130
    Sam Bauers
    Participant

    This plugin adds a Sphere link to topic pages which allows you to search the Sphere service for related content to your topic.

    It does a similar job to the Sphere Related Content plugin for WordPress

    It’s easiest to just to install it and have a look to find out what it does.

    http://bbpress.org/plugins/topic/58

    #59178

    In reply to: plugin: Markdown

    fel64
    Member

    http://rapidshare.com/files/43804950/felise.php.html

    Hmm. Still don’t know about a name. Ignore the name there and upload, activate.

    In addition to what I said last post,

    *bolded stuff* => bolded stuff

    _italic words_ => italic words

    **notbold** => *notbold*

    __notitalic__ => _notitalic_

    link@http://somerealurl… => link

    “link text blah”@http://somerealurl… => link text blah

    #, *, -, (1, 2, 3), (a, b, c) => <ul/ol><li> .... </li> .... </ul/ol> (Numbers, letters need to be in order. Any punctuation after it will also be accepted.)

    >>Name[post#] => >> Name

    (Not italicised or bolded in: u*blah*, _ blah_)

    I believe that covers everything. I’ll have a look at Markdown, see if it does anything cool that I’d want too. :P

    The last one is pretty neat but mostly for another plugin that I have on my site that’s also unreleased. Might ask for plugin space for that one now I guess.

    Oh, also worth noting that standard behaviour for this plugin is ‘compiling’ the text when the post is saved. That means that it doesn’t make your forum any slower (all the work is done when the post is saved) and that if at any point you remove this plugin, old posts written with it will look exactly the same so you can do that anytime without problems.

    [Edit] Markdown is … complicated. When I wrote this, I wrote it to go along with bbPress, so it’s a lot simpler. It doesn’t support stuff like paragraphing because bbPress already does that. And I wrote it so you wouldn’t have to remember anything, but so that the stuff you’d write anyway is formatted nice. No need to think what the syntax is or anything like that. I like what it did with blockquotes. I’ll put in some syntax for blockquotes, even if having to put > in front of every line sounds tiresome. But what do people think about italicising or bolding inside words? I took it out to avoid unintentional formatting, but Markdown has it in (for stuff like un*fucking*believable) and now I’m not so sure.

    #59224
    Sam Bauers
    Participant

    @M

    Mmmmmm…… Choc.O.I.P.

    @ck

    I don’t think there’s much point in trying to align this tool with manually installed plugins. It’s easy enough to remove the manually installed plugins and then re-install using the browser (provided they are in the repository and not hosted elsewhere of course). The re-installed plugin even picks up the old plugin’s settings. I’m managing all my plugins this way now.

    fel64
    Member

    I wrote a plugin to do that. Just upload and activate this.

    <?php
    /*
    Plugin Name: Page &raquo;
    Plugin URI:
    Description: Adds &raquo; to the end of topic titles, linking to latest post.
    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;
    }
    ?>

    tisme
    Member

    +1 for wider (800px) template.

    also, default “Reply” input textarea is too small (get scrolled) and

    ‘background: url(images/bg.png) #ccc fixed center top;’ makes it somewhat slow.

    so far, wp.com forums layout by the Matt Thomas is the best layout of all bb forums I had a chance to see.

    nice addition would be to have a link to the “Latest Post” on the front page/forum posts index table — it’s a matter of just a couple of lines to be added to the front-page.php/forum.php — makes a big deal to quickly get on a last post of multi-page posts w/o having to redundantly load a 1st page of the thread.

    #59177

    In reply to: plugin: Markdown

    tisme
    Member

    wow, that’d be totally cool!

    at the first glance “TextControl” seems to be a rather complicated plugin by itself, though.

    I just thought if the “Markdown PHP” (which is quite small and relatively simple — hence less bugs and problems) can successfully work with WP, it should also work w/ bbPress…

    perhaps, I do miss something and it can’t without having to be redone heavily?

    Edit:

    oh, I get it (just download plugin itself) “TextControl” require_once(‘text-control/markdown.php’); — I thought authors did their own implementation of Markdown.

    #59176

    In reply to: plugin: Markdown

    _ck_
    Participant

    “her” plugin is for admin… yes… and very dangerous to override to allow visitors to have that kind of override…

    Do you want me to port “TextControl” to bbpress?

    It has markdown among many other options.

    http://dev.wp-plugins.org/wiki/TextControl

    http://ckon.wordpress.com/2006/08/14/updated-version-of-text-control-that-works-with-wp-21/

    #59175

    In reply to: plugin: Markdown

    tisme
    Member

    hello fel,

    some name suggestions:’bbMark’, ‘markMini’ etc and possible permutations ;-)

    italic, bold, blockquote and link is basically what I need.

    ck removed a lot of filters, I’ve tried remove them too — works better, but his plugin is for admin user level, isn’t it?

    I just can’t dig it: how do I encode HTML back to Markdown at ‘edit_text’?

    PS a bit of documentation on “bbPress text flow” (something like: http://www.michelf.com/img/blog/wordpress1.5-text-flow.png) wont hurt ;-)

    #59164

    In reply to: Few questions..

    Ziyphr
    Member

    Thanks for your help everyone, I think I’ll be giving bbPress a try.

    #59223
    _ck_
    Participant

    Okay the plugin list is blank for me. It did seem to pull down the plugin list. But I don’t see any new plugins offered?

    Oh duh, I just re-read that it won’t show any plugins it hasn’t installed itself.

    Can’t that just be copied from the bbpress table?

    But wait, shouldn’t it show new available plugins not installed yet?

    #59222
    _ck_
    Participant

    Interesting – checking it out in a moment.

    It will be helpful to more tightly knit the bbpress community.

    I was thinking of making a voluntary plugin that would ping a bbpress stats site either nightly or weekly with your number of members, total topics, total posts. It would make a showcase for bbpress possibilities.

    Right now it’s hard to get a count of the number of installed bbpress users. I’ve tinkered with various search engine commands and come up with an active number of 200-300 but this could be wrong do to path or file renaming (or template editing).

    #59221
    M
    Member

    And here I imagined the secret to be some way to transport chocolate through the internet! This is good too . . . just not as good. ;)

    #59220
    Trent Adams
    Member

    Finally, no more secrets. They are too hard to keep!

    Trent

    #2129
    Sam Bauers
    Participant

    Now available in the “Extend” area.

    http://bbpress.org/plugins/topic/57

    This plugin adds a plugin browser to the administration area of bbPress. Using this browser you can view the latest versions of the plugins available via the official bbPress plugin repository, you can install them and also upgrade them when new versions become available.

    Neat-o!

    This plugin used to be known as the super secret plugin

    Note: the plugin only manages plugins that it has installed, it won’t magically find all your existing plugins. However, re-installing is a trivial exercise through the browser.

    #59191
    Trent Adams
    Member

    Something that might interest you:

    https://bbpress.org/plugins/tags/authentication

    Trent

    #56541

    In reply to: Strut Your bbPress!

    After over 5000 posts and 3 million unique visitors, I’ve finally made it professional. (or at least one step closer) ihatestarbucks.com is now running bbpress! feel free to drop in and vent your spleen or share your kudos.

    #59193
    stuboo
    Member

    Sorry Trent.

    admin [at] pharmboard [dot] com

    Feel free to edit the post if you’d like.

    Ryan

    #59163

    In reply to: Few questions..

    Trent Adams
    Member

    1) I would ‘t worry about the plugins to help out if you need it (small percentage) as they are intended to get it fixed which will eventually make it into the core. Those plugins would only require minor changes if something was changed in bbPress, but I doubt it would happen often.

    2) I had great luck with the phpbb converter myself and have stated in one of the threads which one I used. I would just look around a bit before choosing one.

    3) Since the upgrade process is so easy, there is no need to wait! As well, the changes scheduled for the next series of releases are small changes and no worth waiting for!

    4) So1o just released a new version of the private forums plugin that is exceptional and recently addressed the problems with the RSS feed being private. It is found in the ‘extend’ tab of this forum in the plugin browser!

    5) fel64 is absolutely right. mdawaffe is the head dev and he is working on wordpress code at the same time. They will always be compatible as they are working toward more shared function (at least not conflicting). Issues will be worked out as we go, but shouldn’t be a problem.

    Thanks,

    Trent

    #59192
    Trent Adams
    Member

    Please let me know what you would charge to make these changes.

    Please don’t do that people! Contact stuboo through their website or if you are reading this stuboo, leave a contact address as we don’t want to use the forums as a place to bid or bidding wars.

    Trent

    #2126
    stuboo
    Member

    I need a couple of things done that I don’t have time or knowledge to do.

    1. Upgrade my bbpress

    2. Fix my bbpress (users create accounts but never receive emails telling them what their password is).

    It’s possible that fixing #1 will fix #2, but there may also be a chance that the upgrade will break my theme. I need you to not let that happen.

    Please let me know what you would charge to make these changes.

    http://www.pharmboard.com

Viewing 25 results - 60,676 through 60,700 (of 64,535 total)
Skip to toolbar