Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 33,026 through 33,050 (of 64,534 total)
  • Author
    Search Results
  • #111988

    Just to make sure I would delete the bbPress plugin (you won’t lose any of the data that is there) directory and then reinstall it.

    #111467
    dosch
    Participant

    Sure, I used zBench

    See how I modified it here: http://all4xs.net

    #111987
    MikeonTV
    Member

    I have cleared all the errors by disabling all plugins but BBPress. Nothing changed.

    In my theme functions.php folder (called Boooster) I added the line

    add_theme_support( ‘bbpress’ );

    and now my bbpress posts appear but as regular blog posts and with no styles or bbpress layout. I’m getting closer … I think. Any more insight?

    http://f6.com.au/forum/

    #111466
    smiga
    Participant

    Dosch, could you please share theme name? Im currently using WP Mimic, but it does not work with bbpress 2.x, so Im still running on 1.x version. :-/

    I did not sucseeded searching alternative.

    #42439
    Jimfire
    Member

    I have a brand new wordpress site. I have successfully (?) installed bbPress, and created my forums just like in the instructions. When I go to my site, the bbPress forums do not show up. I do not have any pages named “forum”, although I tried making one to see if that would help and it didn’t, so I deleted it.

    I can see it on the dashboard. I can configure it. I just cant see it from the website.

    Any suggestions?

    #42431
    helloFlo
    Member

    Hi everybody

    I tried to separate title of subforums and these counters.

    Unfortunatly bbp_list_forums() doesn’t take an arg like “show_title” to give the possibility to set in false.

    So i fork the bbpress plugin to add this arg (i know it’s wrong).

    Anyone know a troubleshooting smarter ?

    #112002

    Got it working!!

    .bbPress #header {

    background-image: url(images/mspace-header.png)!important;

    background-repeat: no-repeat;

    }

    THANK YOU – YOU’RE a SUPERSTAR!! :)

    #112001

    It might be easier to use some of the bbPress body classes in addition to what you are using now.

    For example you might be using a custom body class called ‘my-header-image’.

    So if you wanted to use that on your bbpress portion of the site you would just add the bbpress body class to your css, such as

    .my-header-image,
    .bbPress {
    background: url(myimage.jpg);
    }

    There are other body classes available from bbPress, but you get the picture :)

    #112000

    Unfortunately nothing changed, its probably “operator error” since I am pretty new to genesis and bbpress. Maybe I didnt explain myself properly either. :/

    Some of my site’s pages use a custom body class where I specify an alternate header. It seems like all the pages I set up in the bbpress forum and topic areas are missing the Genesis Layout Settings Metaboxes where I can specify the custom body class….

    I dont know if I am making this more difficult than it is?? It seems all the deeper bbpress pages (except for the page showing the actual forum) are reverting to the default header and I would like to customize it to show the alternate one.

    Thoughts??

    #111999

    This is a total guess and not tested, but you should be able to put something like this in your theme’s functions.php file

    add_action( 'bbp_init', 'do_custom_body_classes' );
    function do_custom_body_classes() {
    add_filter( 'body_class', 'genesis_custom_body_class', 15 );
    }

    #111973

    @johnny-rocket – The public/private/hidden forum bug might be the crux of the issue others were running into. I’ll be putting out a point release of bbPress today to address it.

    #111985

    You’ll want to clean up all those errors before most things will work normally. Doesn’t look like the issue is with bbPress anywhere (yet), according to your dump above.

    #42429

    For my website, running on Genesis framework using Minimum theme, I am using two diff custom body classes to define the header images of certain pages. The interior forum pages are only showing the default home page site header and I do not see where I can add my custom body class to those pages. Does anyone have a suggestion for how/where I can define/change the header images of the forum pages?? I would really appreciate it!

    Website http://www.nurturematernity.com

    #111998

    A better way would be to edit it in the template or use the bbp_get_reply_author_avatar filter in place.

    What you did will work fine, however keep in mind that when the next version of bbP comes out you will lose the edits you made to the plugin.

    #111997
    Erhnam
    Member

    Already found it;

    It’s in the plugins/bbpress/bbp-includes/bbp-reply-template.php

    change the ‘size’ => 80, to 40

    #111972

    You’ll want something like this. And it should go in your theme’s functions file.

    add_action( 'bbp_ready', 'ja_login_detect' );
    function ja_login_detect() {
    include_once "/dap/dap-config.php";

    if ( !Dap_Session::isLoggedIn() )
    header( "Location: /dap/login.php" )
    }

    #42428
    Erhnam
    Member

    How do I change the avatar size in bbpress 2.0? It’s currently 80×80 and I want to change it to 60×60.

    #111957
    baldg0at
    Participant

    @jaredatch – no guest posting, just want a give the users a way to police the forums and alert me of abusive posts or other terms violations.

    Thanks @daveshine. I’ll take a look at that if SPAM starts to get out of control. Right now, it looks like Akismet is handling things well enough.

    wp-reportpost looks like it may do the trick. Thanks for the feedback.

    #111971

    We have tried working on this some more, but still not working. Would bbpress.php be the right script for these changes?

    <?php

    include_once “/home/@#$$$/public_html/dap/dap-config.php”;

    //the problem is get_post_type comes up empty..

    if((get_post_type() == ‘forum’) || (get_post_type() == ‘topic’) OR (get_post_type() == ‘reply’))

    {

    if( !Dap_Session::isLoggedIn() ) {

    header(“Location: /dap/login.php”);

    exit;

    }

    }

    Our problem is that get_post_type() comes up empty when used in bbpress.php.

    So maybe the whole check needs to go else where. I am not sure where.

    Also i don’t see a bb-config.php in our folders? Should this file exist?

    #42425
    carminka
    Member

    I’m a professor & I’m planning to use bbPress as my a grad school class hub. I have bbPress working as I want, except I need 2 types of forums. One is for Required Discussions (assignments) and the other is for Open Discussions (non-required). Anyone can start a discussion in the Open Discussions Forum, but only I can start new discussions in the Required Discussions Forum.

    I converted my SNS from Ning. So far so good except for this one issue about controlling who can start discussions in these 2 forums.

    Is there a way to control who can start discussions in specific forums?

    THANKS for any info!

    carmin

    #111938
    I-Simpa
    Member

    It’s perfect. The problem is now resolved.

    Many thanks.

    #95786
    rightside
    Member

    @JJJ

    I read in this thread that you mentioned it was possible to give users the ability to add iframes to a post if you have the correct ‘simple’ WP plugin.

    I am trying to allow people to add their iframes from soundcloud.com into a post so I need to give them that ability.

    Can you tell me what plugin will allow this to happen?

    Thank!

    #111137
    Dan Milward
    Member

    Hi guys,

    We made a premium bbPress spam killer Plugin. It kills spam dead!

    The concept is loosely based around our own ideas and automatting some of Anointed’s ideas.

    The Spam Killer Plugin saves us a lot of time and money. Since the spam problem has cost us such a lot of time and money;

    a) removing spam daily

    b) testing many plugins that did not work

    c) and finally building a new Plugin which took many many hours that fixes our problem

    … we have decided to make it a premium plugin for sale on our site.

    http://getshopped.org/premium-upgrades/premium-plugin/bbpress-spam-killer/

    Best,

    Dan

    #111845
    Grabinark
    Member

    micropat: The new version works splendidly — the button appears on posts and pages but not on the forum index.

    Rastarr: I’m letting you know that I’ve found something that actually works with bbPress: Lockerz Share.

    *******************************************

    CLOSE ON: GRABINARK. He wipes a tear from his cheek and sniffs.

    GRABINARK

    (hoarsely)

    Thanks, micropat. You …. you made it work.

    MICROPAT’S POV:

    GRABINARK bows and slowly walks backwards out of the room.

    FADE OUT

    THE END

    jamescarson1
    Member

    Sorry for the double post….

    Or should we just use !important in our master css files?

Viewing 25 results - 33,026 through 33,050 (of 64,534 total)
Skip to toolbar