Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,926 through 25,950 (of 64,535 total)
  • Author
    Search Results
  • #133669
    kate.t
    Participant

    How do I shift the new bbpress search bar to another place?
    lets say I’m thinking of shifting the search bar to a 2nd navbar?

    #133668
    alexis.nomine
    Participant

    As is_bbpress() doesn’t work within the bbp_theme_compat_actions hook, the solution would be to conditionnaly remove bbp_head and bbp_enqueue_scripts. It’s a bit more extreme but it works:

    `add_action( ‘wp_head’, ‘conditional_bbpress_head’, 9 );
    function conditional_bbpress_head(){
    if( !is_bbpress() )
    remove_action( ‘wp_head’, ‘bbp_head’ );
    }
    add_action( ‘wp_enqueue_scripts’, ‘conditional_bbpress_scripts’, 9 );
    function conditional_bbpress_scripts(){
    if( !is_bbpress() )
    remove_action( ‘wp_enqueue_scripts’, ‘bbp_enqueue_scripts’ );
    }`

    #133662
    pubman
    Participant

    For some reason when I log into my dashboard under Settings I no longer see Forums as an option. If I go to the plugins page and click BBpress settings from there I get a permission error. Also when I view WordPress users the Forum roles are blank for all my users. I recently deleted one of my admin users and think this might be the problem. Is there a way to verify forum roles via the mysql db?

    #133661
    TrishaM
    Participant

    OK I finally have the first part completed by following your excellent instructions (thank you) – I’ve removed all the forums, topics, and replies from my database…..but naturally they are still *there* in the (old) bb_ tables, just no longer in my wp_posts or wp_postmeta tables.

    This shrunk the size of my database considerably – from 30MB down to 8MB……BUT I still can’t get my backup to import to a new clean database (as a safeguard), even if I zip it……I get the “mySQL server has gone away” message, which tells me it’s timing out. I sent a message to my hosting company’s tech support (1&1) to ask that they increase the mysql.connect_timeout setting, but haven’t heard back yet…..and they may not do it, but hopefully they will.

    I’m still reluctant to try importing my forums/topics/replies again until I’m certain that I can restore from a backup in the event of a disaster, so now I’m trying to export and import tables one at a time into a new database…..when I get to the bbPress tables I’ll import those to yet another new (temporary) database and keep them away from my wp_ tables……

    That may take me a couple of days since I have to work on this at night….but I WILL be back with my results soon!

    #133660
    hllorens
    Participant

    Hi,

    Just installed bbpress today and had exactly the same problem.
    In my case, I realized that was a problem with Advanced Access Manager Plugin.

    If you have it installed go to capabilities and add to the Admin/Super-admin role the capabilities to manage forums/topics…

    Hope this helps!
    Hector

    jawanda0
    Participant

    I am in the same boat. Not sure if it is a BuddyPress issue or bbPress. When I create a new group, there is no option to change the group avatar, and of course after the fact there is no option either.

    When you create a new group, how many “Steps” does it take you through? Doe it even give you a group avatar option?

    #133658

    In reply to: Quotes escaped in 2.3

    Jeff Farthing
    Participant

    Hmmm… It looks like bbPress has reincorporated the bbp_code_trick functions itself, eh? I guess there’s my answer.

    #133657
    John Parris
    Participant

    A note to anyone that might be having 404 problems with non-admins, yet this time in version 2.3.

    I fixed the problem by doing the following in the WP admin:

    Tools > Forums > Remap existing users to default forum roles

    #133656
    Jeff Farthing
    Participant

    I haven’t dug deep enough yet, but on my support forum, I use the quicktags solution from the legacy bbPress, including the filters to allow regular users to post code. That is, the functions that were named bbp_code_trick, bbp_code_trick_reverse, bbp_encodeit, bbp_decodeit.

    However, since the 2.3 upgrade, all code users post has the quotes (possibly other things) escaped in both the topic body and the editable text area.

    Any ideas what changed, so that I don’t have to dig through?

    #133655
    Jeff Farthing
    Participant

    Yes, I figured this out on my own.

    #133651

    Topic: Theme Issue

    in forum Themes
    Ganzuelo
    Participant

    I am using a custom bbpress template that came with my the template. I am having an issue that when you post a video link the video breaks the template. Where can I fix this in the css?

    screenshot

    #133649

    Enable the Fancy Editor in your forum settings.

    #133648

    Unfortunately, this won’t scale very well. Notifications and Favorites are stored in a serialized array is usermeta, and keeping track of every topic will eventually slow things down significantly.

    Instead, I’d filter `bbp_is_user_subscribed` and invert the results. That way you’re subscribed to all topics, and bbPress only stores the topics your users are not subscribed to.

    Make this into a plugin:

    `function invert_subscribe( $is_subscribed ) {
    return ! $is_subscribed;
    }
    add_filter( ‘bbp_is_user_subscribed’, ‘invert_subscribe’ );`

    Heavenlyz
    Participant

    Wordpress version: 3.5.1
    bbPress version: 2.3
    site: http://www.heavenlyz.com

    Apologies if this is considered cross-posting, as this appears as a reply to another thread (but that other thread title isn’t similar). The other thread is… http://bbpress.org/forums/topic/non-functional-index-page-when-bbpress-2-1rc4-is-used-with-woothemes-canvas-5-05/#post-133638

    Ok, so newbie here who knows html and understands coding but is really keen to not screw up the site that someone else has built for me (so apologies if the answer is above and I’m not seeing it).

    The site is http://www.heavenlyz.com and, I think, I’m using the “Nollie” theme.

    I’ve installed bbpress, created a couple of forums and – via the great info on this thread – created a page called “Boardroom”, into which I’ve inserted the “[bbp-forum-index]” shortcode. Hey presto, after much head scratching, I can now see a forum index on http://www.heavenlyz.com/boardroom/…woohoo

    But, my next challenge is to be able to open one of the forums shown. Am struggling with this.

    Having searched, the most relevant answer seems to be… http://bbpress.org/forums/topic/non-functional-index-page-when-bbpress-2-1rc4-is-used-with-woothemes-canvas-5-05/#post-133638

    If you think there is a better (read “easier” 🙂 solution, then please suggest but if not, please read on…

    Because I am using the Nollie theme – I think – the parent/ child argument in that thread doesn’t apply, so am looking at changing the root page.php only (to be honest, I wouldn’t know how to work out whether the child page exists/ how to find the child page).

    In the thread linked to above, Lab says

    Next, change the entry div as shown, to modify the current conditional check to ALSO see if you are on a bbPress page. Without this extra bit, it assumes that you want the page to show the_excerpt() on every page other than single.php …. not true. We want full content on bbPress pages as well

    But my page.php says…

    ID, ‘mfn-post-layout’, true) ) {
    case ‘left-sidebar’:
    $class = ‘ with_aside aside_left’;
    break;
    case ‘right-sidebar’:
    $class = ‘ with_aside aside_right’;
    break;
    default:
    $class = ”;
    break;
    }
    ?>

    Where’s the “entry div”? Apologies if this is a laughably stupid question.

    All help appreciated. N.b. As I’m learning, to start with, I’d rather keep the changes simple and effective rather than complex and golden.

    #133639
    harmeetsinghs
    Participant

    hi every one
    i am install bbpress it’s worked on local host but when i upload on my site it’s not showing visual/ html part of that.. Please any one help me on this.
    Thanks in advance

    Heavenlyz
    Participant

    Ok, so newbie here who knows html and understands coding but is really keen to not screw up the site that someone else has built for me (so apologies if the answer is above and I’m not seeing it).

    The site is http://www.heavenlyz.com and, I think, I’m using the “Nollie” theme.

    I’ve installed bbpress, created a couple of forums and – via the great info on this thread – created a page called “Boardroom”, into which I’ve inserted the “[bbp-forum-index]” shortcode. Hey presto, after much head scratching, I can now see a forum index on http://www.heavenlyz.com/boardroom/…woohoo 🙂

    But, my next challenge is to be able to open one of the forums shown. Am struggling with this.

    Because I am using the Nollie theme – I think – the parent/ child argument doesn’t apply, so am looking at changing the root page.php

    Above, Lab says

    Next, change the entry div as shown, to modify the current conditional check to ALSO see if you are on a bbPress page. Without this extra bit, it assumes that you want the page to show the_excerpt() on every page other than single.php …. not true. We want full content on bbPress pages as well

    But my page.php says…

    ID, ‘mfn-post-layout’, true) ) {
    case ‘left-sidebar’:
    $class = ‘ with_aside aside_left’;
    break;
    case ‘right-sidebar’:
    $class = ‘ with_aside aside_right’;
    break;
    default:
    $class = ”;
    break;
    }
    ?>


    <div id="Content" class="subpage”>


    <?php
    if( $class ) echo '’;

    while ( have_posts() )
    {
    the_post();
    get_template_part( ‘includes/content’, ‘page’ );
    }

    if( $class ) echo ”;
    ?>

    Where’s the “entry div”? Apologies if this is a laughably stupid question.

    All help appreciated. N.b. As I’m learning, to start with, I’d rather keep the changes simple and effective rather than complex and golden.

    #133635
    comeback1993
    Participant

    @ianhaycox Many thanks.

    #133615
    Daniel Lemes
    Participant

    At first, sorry about my english, i’m not fluent.
    WordPress version:3.5.1
    bbPress version: 2.3
    Theme: Origin version 0.3.5

    The problem don’t happen with TwentyTwelve.
    I’m using a very modified version of Origin from AlienWP. Everything works fine with bbPress, except any forum page (list of topics). It stays blank.

    Checking the code in this blank page, we can see that nothing after site description is loaded, not even the content is opened. Theme header stops at this point:

    `…

    /** STOPS HERE ***/

    …`

    I tried to create a new “normal” page and use the shortcode [bbp-single-forum id=2633] to list topics;, it works, but there’s a link on breadcrumbs (inside each topic) that still pointing to original forum list.

    I really don’t want to change my theme, so any idea is appreciated.

    Links
    Main forum list (working) http://www.memoriabit.com.br/forums/
    Forum page – list of topics (not working) http://www.memoriabit.com.br/forums/forum/sega-mega-drive-genesis/
    Topic (working) http://www.memoriabit.com.br/forums/topic/super-monaco-gp/

    #133612
    Daniel Lemes
    Participant

    @enlightentogether
    Easy: create a new page, name it anything and paste the shortcode [bbp-forum-index] on it.

    I did the same and it works, but there is a problem: the link to forum “main page” on breadcrumbs still pointing the blank “original” one. I noticed that you’re using Oxygen theme from AlienWP; i’m using Origin (same developer) and have the same problem. Unfortunately they don’t give support for these free themes (except we buy an Membership for 39 bucks…)

    #133611

    Sounds like a conflict somewhere. bbPress should be redirecting back to the exact same topic/reply that each user creates, similar to how it does here.

    #133610
    Sam Rohn
    Participant
    #133608
    Thrifty T
    Participant

    I am new to bbPress. I’ve installed everything and need help with styling.

    I have created forum categories as well as forums. http://churchofficehelpdesk.com/test/

    Currently the forums under the categories all clump together on one line. I’d like to add each forum to a separate line with a description underneath. (Similar to this – http://d.pr/i/EeZu)

    Any help would be appreciated.

    #133607
    akgt
    Participant

    Hi i need help finding a few plugins for bbpress 2.3

    – my posts/threads like in VB

    – report post

    – quote

    #133569
    NewSha
    Participant

    I’m running bbpress for a small group of users. I need to make all current and future users to be automatically subscribed to everything.
    I’m looking for the easiest way to make all users subscribed to all topics by default.
    Similar topic, but the solution was not found.

    Thank you!

    #133598
    aukesch
    Participant

    I use BBPress-topic-to-post plugin to replace my wordpress replies for bbpress topics.
    Now I face the problem that I would like to link from BBpress forum to my posts
    Can anybody help me?

    f.e.
    domain.com/forums/forum/forumname contains links to forumtopics. These links I’d like to redirect to the orginal post

    So changing the link from
    domain.com/forums/topic/xxx/ (xxx is a post AND a forumtopic thanks to the plugin)
    to
    domain.com/xxx/

    Hope my questiosn is clear. If not, I’m looking for the file with the hardcode of domain.com/forums/forum/forumname

Viewing 25 results - 25,926 through 25,950 (of 64,535 total)
Skip to toolbar