Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,376 through 40,400 (of 64,532 total)
  • Author
    Search Results
  • #97831
    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.

    #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.)

    #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.)

    #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.)

    #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.)

    #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!

    #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.

    #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.

    #103005
    Wiishy
    Member

    Where? In the codes or when you install bbpress?

    #97905
    Wiishy
    Member

    Where? In the codes or when you install bbpress?

    Erlend
    Participant

    I’ve cross-posted this on the BuddyPress forum. Moderators are free to close this thread so discussion happens in one place, but I figured there should be a notice on this domain as well.

    http://buddypress.org/community/groups/requests-feedback/forum/topic/is-the-approach-to-bbpress-plugin-buddypress-integration-up-for-debate

    #94686
    Andre
    Participant

    @jjj

    Any thought of combining the bbpress twenty ten theme you are developing with twenty ten for buddypress that Andrea is working on? That would be ideal for me, and I assume several others, because we are planning on using both plugins.

    #94685
    Ryan Gannon
    Member

    Anyone else having a problem with New Replies not bumping their Topic to the top of the list in a Forum?

    #65981
    abdessamad idrissi
    Participant

    I run in the same proble as I installed bbpress prior to wordpress, so i created a plugin to handel the transaction:

    https://bbpress.org/plugins/topic/bb-to-wp-users-copier/

    hope it helps.

    #102979
    zaerl
    Participant
    #97879
    zaerl
    Participant
    #103003
    zaerl
    Participant

    I’m a nub, I want 5 different bbpress install but user will only need to sign-in once. My site links to different bbpress forums, I don’t want the user to keep having to sign-up for each forums.

    Use one database.

    Also, what is a RSS feed?

    http://en.wikipedia.org/wiki/RSS

    #97903
    zaerl
    Participant

    I’m a nub, I want 5 different bbpress install but user will only need to sign-in once. My site links to different bbpress forums, I don’t want the user to keep having to sign-up for each forums.

    Use one database.

    Also, what is a RSS feed?

    http://en.wikipedia.org/wiki/RSS

Viewing 25 results - 40,376 through 40,400 (of 64,532 total)
Skip to toolbar