Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,351 through 40,375 (of 64,515 total)
  • Author
    Search Results
  • #94697

    Just pushed an update through that will fix the topic freshness order when creating new topics and replying to existing ones. This fix changes the way topics are pulled from the DB, and as a result is not backwards compatible with previous versions of the plugin. (Oh the dangers of beta testing.)

    This is however the way it will work going forward, so you won’t need to worry about going through this again.

    Forum counts and freshness links are coming next.

    #36380
    yetanotherlogin
    Participant

    Hello

    A forum I read often uses BBPress. Whenever someone adds a message to a thread to which I replied, I am notified by e-mail.

    The small issue I have with the e-mail notification, is that the URL points to the first page of the thread, so I have to click on the number of the last page to jump to it after clicking on the URL: Can BBPress be easily reconfigured so the URL points to the last page instead?

    Thank you.

    #36379
    paragulka
    Member

    So I have WordPress 3.0.2 installed. I downloaded bbPress 1.0.2 and fired up the installation.

    I entered all the details that were asked, and also did copy&paste the AUTH etc KEY and SALTS in. I chose to use wp_users table only.

    Everything works except for 1 thing. When I log in to WordPress, I am not automatically logged in to bbPress. And vice versa. Can anybody help me?

    #94696
    Rich Pedley
    Member

    It may be just that at the moment, but check the trac tickets, and if there isn’t one mentioning it then feel free to start one.

    re anonymous posting, please be aware of this:

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

    No validation is done.

    additionally the while point of a filter is to allow you to change without editing core plugin files.

    #94695
    Ryan Gannon
    Member

    Sorry I just want to ask again if anyone else having a problem with New Replies not bumping their Topic to the top of the list in a Forum? If it’s simply not implemented yet that’s fine I just want to know that I’m not doing something wrong.

    #94694
    Commentguerir
    Participant

    edit : we can activate anonymous posting on editing file bbp-includes/bbp-users.php on editing this code :

    function bbp_allow_anonymous () {

    return apply_filters( ‘bbp_allow_anonymous’, get_option( ‘bbp_allow_anonymous’, false ) );

    }

    change false -> true

    #94693
    Commentguerir
    Participant

    Great ! I see that Anonymous Posting ticket is fixed !

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

    But where can i active it ?

    #97831
    ITchimes
    Member
    #102931
    ITchimes
    Member
    #92985
    thenbrent
    Member

    Hi zaerl,

    Thanks for your reply. The template I’m using, as created by Andrew, does call wp_head(), via get_header(). It also calls wp_footer() via get_footer().

    I could also use a substitute hook, like bb_foot, which I saw in the default templates, but this doesn’t actually seem to be called anywhere.

    Any ideas?

    #92984
    zaerl
    Participant

    Cause wp_head isn’t automatically called by WordPress. It’s a template tag function that themes’ authors usually put between head elements.

    https://codex.wordpress.org/Function_Reference/wp_head

    #92983
    thenbrent
    Member

    Hey Andrew,

    I’m wondering the same thing. I’m using your EcoPro theme and trying to get a plugin to work which calls wp_footer. This hook isn’t working on bbPress pages though.

    Did you ever figure this out?

    Brent

    #94692
    LwEEs
    Member

    @Rich Pedley

    Thanks man! I will try to make it work today in the afternoon. Thanks for the functions.php tip, good one. Have a good day everyone.

    #94691
    Rich Pedley
    Member

    LwEEs – child theme…

    and you could always copy the content of functions.php to your existing one.

    #97909
    zaerl
    Participant

    There may be some more magic involved in order for the session to persist across both installs.

    Indeed my friend, mostly because bbPress doesn’t use sessions (it uses encrypted cookies.)

    #103009
    zaerl
    Participant

    There may be some more magic involved in order for the session to persist across both installs.

    Indeed my friend, mostly because bbPress doesn’t use sessions (it uses encrypted cookies.)

    #97275
    batrachoid
    Member

    Over the last few weeks, I’ve experienced the same problem with spammers on one of the forums I’ve set up. Akismet hasn’t worked, no-spam-user hasn’t worked, recaptcha hasn’t worked. Anyone have any success blocking this new generation of spambots? (I love bbpress but seeing the same spam here is disheartening.)

    #102375
    batrachoid
    Member

    Over the last few weeks, I’ve experienced the same problem with spammers on one of the forums I’ve set up. Akismet hasn’t worked, no-spam-user hasn’t worked, recaptcha hasn’t worked. Anyone have any success blocking this new generation of spambots? (I love bbpress but seeing the same spam here is disheartening.)

    #94689
    LwEEs
    Member

    Dude, you screw me over with the new changes, can we have functions.php be bbp_functions.php, and author.php be bbp_author.php. Here is why, I’m hacking my way into the plugin by placing the pages in my theme then adjusting the CSS, since the new pages would overwrite my theme pages, it doest work. I know this is not your anyones priority, I will totally understand if this request doesn’t happen.

    Great job guys, happy holidays.

    #94688
    Rich Pedley
    Member

    It’s fairly easy to do ;)

    check the style.css in the included twentyten child theme and you’ll see this:

    /**
    * Theme Name: bbPress - Twenty Ten
    * Theme URI: http://bbpress.org
    * Description: Adds bbPress forums to Twenty Ten theme
    * Author: The bbPress Community
    * Version: 0.1
    * Template: twentyten
    * Tags: bbpress, black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style
    */

    The template denotes another available theme that you are making this the child of. If you include the main style sheet, you don’t need to re-reference everything. eg. @import url("../twentyten/style.css");

    So create a new theme directory by including that, and copy all the other files(ie not style.css) from plugins/bbpress/bbp-themes/bbp-twentyten (not forgetting to rename the Theme name)

    However you might want to copy in the default style, this start’s with:

    /* bbPress Style
    
    */

    Then you need to check where the get_header(), get_sidebar() & get_footer() are in your parent theme.

    If they are in this order:

    get_header();
    /* Content */
    get_sidebar();
    get_footer();

    you don’t have to do anything.

    However if they are in a different order you may need to adjust, currently they reside in the following files:

    page-bbp_form.php

    author.php

    taxonomy-bbp_topic.php

    single-bbp_topic.php

    single-bbp_reply.php

    single-bbp_forum.php

    page-bbp_topics.php

    page-bbp_front.php

    and I think that is all that’s needed! (untested though)

    #94687
    gswaim
    Participant

    @JJJ

    I have been waiting for a WP forum plug-in for so long, I don’t mind working with page templates to be one of the early adopters. If short code support comes later, then that would be icing on the cake.

    I do hope, at some point, detailed information is available on how to build the bbPress pages for other themes. As long as this documentation is avaialble, I don’t think this should be a deal breaker for anybody.

    Thanks!

    #97906
    guly
    Participant

    when you install bbpress, it will ask you for the database name, username, and password. If for example you had shared hosting and multiple domains hosted out of the same public_html directory, it would be easy just to specify the same database for several installs.

    Not sure how bbpress would then handle the sessions in terms of logging in and out; there may be some more setting you would need to adjust.

    #103006
    guly
    Participant

    when you install bbpress, it will ask you for the database name, username, and password. If for example you had shared hosting and multiple domains hosted out of the same public_html directory, it would be easy just to specify the same database for several installs.

    Not sure how bbpress would then handle the sessions in terms of logging in and out; there may be some more setting you would need to adjust.

    #97905
    Wiishy
    Member

    Where? In the codes or when you install bbpress?

    #103005
    Wiishy
    Member

    Where? In the codes or when you install bbpress?

Viewing 25 results - 40,351 through 40,375 (of 64,515 total)
Skip to toolbar