Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 31,401 through 31,425 (of 64,517 total)
  • Author
    Search Results
  • #114116
    enderandrew
    Participant

    The CK Editor for WordPress won’t allow captions on images, and will break posts that have captions. So, I can’t use it on my site.

    I’m back to square one with my initial issue. I can’t theme the TinyMCE editor used by bbPress now. Can someone point me to what CSS tags I should use?

    #45658
    Manapunk1
    Member

    Is it even possible? I have a Mingle Forums install, but I want to switch to something like bbPress because Mingle development has stalled some year plus ago. I’ve got security worries and compatibility issues mounting, and want to switch to something better.

    But I would MUCH rather not have to lose everything from my present forums. Am I fresh out of luck?

    #114173

    FYI about Genesis theme compatibility.

    When you do decide to upgrade to bbPress 2.1 you will need to use a plugin.

    Genesis compatibility was removed from bbPress 2.1 and is now wrapped in a plugin (below). The plugin also provides some other fixes the 2.0.x compatibility doesn’t.

    https://wordpress.org/extend/plugins/bbpress-genesis-extend/

    #45654
    Manapunk1
    Member

    I am looking for a button bar editor plugin for bbPress, for posts. I have a lot of people posting on my forums that do not have familiarity with hashing bbcode / html manually into a post, so I would like to find a nice button bar / editor plugin for posting. Unfortunately it looks like the BBcode Wysiwig Editor has gone sour as it is throwing errors whenever I try to activate it.

    Are there any others out therE?

    MTPrower
    Member

    After screwing around with various options for permalinks and for the location and links for my forums, I have decided, once again, that it is best to hack up the archive-forum.php. In fact, I think this very page should be completely changed to allow you to choose whether you want to display the forums archive there, or if you want to use the wordPress page editor to display shortcodes or whatnot. This should be an option in the bbPress settings.

    This would solve pretty much everyone’s problems with permalinks and breadcrumbs, and I think it would be easy to do.

    MTPrower
    Member

    The problem I had before is still here, and so I still need to change what the Archive Page shows. Changing the settings as said above worked at first, but now bbPress reverted back to showing the forum Archives on http://mysite.net/forums/ instead of what I put on my WordPress page at that location.

    In my site’s main menu, I have a link called “Forums” that leads to “http://mysite.net/community/forums/”. This page is the custom page I made, to show the forum_id’s of my two forum categories, rather than showing the forum Archives.

    My WordPress theme has a breadcrumbs system, as does bbPress. On the page that I created, WordPress says my breadcrumb path is:

    Home » Community » Forums

    While bbPress says it’s:

    Home › Forums › Community › Forums

    bbPress has this annoying thing about insisting that if you are inside the forums, it will add extra “sub-menus”, or path items, or whatever you call them, to your breadcrumbs.

    In the bbPress settings page, I set my “Archive Slugs > Forums base” to “archives”, rather than the default “forums”. For “Single Slugs > Forum prefix”, I unchecked the box “Prefix your forum area with the Forum Base slug (Recommended)”.

    bbPress seems to hate playing nicely with your site’s permalinks and breadcrumbs. I’ve always had this problem, ever since I started using bbPress.

    I would be more than happy to hack up bbPress a bit so that I can fix the breadcrumbs and permalinks myself. I consider this a very persistent issue, as I see many people to this day wondering how on earth to get their forums to display at the proper location.

    If there’s anything I can do to help get this problem fixed more permanently, I’d be more than happy to help.

    #45646
    zzweb
    Member

    Hi everyone, I have this page here:

    http://www.complianceupdater.com/mortgage-compliance-checklist-questions/

    It is running off BBpress plugin. Right now, you’ll see that the new topic form does not work. If you submit, it asks ‘Are You Sure You Want To Do This?’. That form is hardcoded in, however as the encryption codes change frequently, I need that to be ‘soft coded’ in via PHP. How would I do this? Please write back if I’m not being clear, I’ll explain more. Thanks!!!

    #114172
    icandygraphics
    Participant

    I figured out that bbpressbbp-includesbbp-extend-genesis.php forces full-width content if you are using a Genesis theme or child theme. I changed the full-width-content to content-sidebar in that file, and now all my archive pages have a sidebar. I know I’m not supposed to just edit the files and save them back to the same location, though. Where should I put my version for my child theme?

    katmmad
    Participant

    Whoops — turned out I took it out when I was trying to stylize the CSS. This was the div, if anyone else has this problem:

    /*removes Topics footer*/

    #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {

    display: none;

    }

    craftcore
    Member

    Oh my goodness, this was driving me CRAZY! I figured out a solution that I hope will help you budddypress + bbress users out too!

    Go to loop-single-reply.php in the bbpress theme files.

    Find the line:

    <?php bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>

    This seems to be what is generating the avatar by default, so I commented it out and used the following code instead:

    <?php // bbp_reply_author_link( array( 'sep' => '<br />' ) ); ?>

    <?php

    $replyauthor = bbp_get_reply_author_id();

    if ( function_exists( 'bp_core_fetch_avatar' ) ) :
    echo bp_core_fetch_avatar( array(
    'item_id' => $replyauthor,
    'type' => 'full',
    'width' => 100,
    'height' => 100
    ));
    endif;

    ?>

    My forums are happy and unfuzzy now. Hope it works for you too!

    :3

    #113979

    If 3.4 + bbPress is causing you get an error saying “bytes exhausted” I recommend either installing this plugin

    https://wordpress.org/extend/plugins/memory-bump/

    or bumping the memory manually through the wp-config.php

    https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    #114132
    shanebp
    Participant

    fyi – BuddyPress has Codex page specifically for setting up Group and Sitewide Forums

    https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    #114174
    wpmhweb
    Participant

    Got the answer:

    In the Dashboard, at Settings > Forums, you can edit the single slugs. If you remove the Forum Prefix, you’ll get your forums at http://example.com/forums/.

    How to set up bbPress to /forums

    I should kept on digging a little bit longer : )

    Thanks,

    #45632
    wpmhweb
    Participant

    Hello,

    I am almost finished configuring bbPress and I just notice trying to publish a page with the URL mydomain.com/forums that it shows the default forums template and not the page that I have created with the shotcodes. There is anyway to fix this? I would like to have my own custom /forums page display.

    Thanks for the help!

    #114170
    Lynq
    Participant

    I think I saw a similar problem to this on the forums recently.

    A page called “Forums” and having your base slug as “Forums” will conflict with each other. If you visit yoursite.com/forums and your forum base slug is set to /forums it takes you to the archive and not the page.

    Check out the post and see if it helps, be warned I didn’t read it 100% through

    https://bbpress.org/forums/topic/how-do-i-use-the-bbp-single-forum-idforum_id-shortcode-in-a-template-file

    Good luck!

    #114100
    Anonymous User 5853594
    Inactive

    In the Dashboard, at Settings > Forums, you can edit the single slugs. If you remove the Forum Prefix, you’ll get your forums at http://example.com/forums/.

    To create an index for your forums at that address, just create a page with the [bbp-forum-index] in it and give it the slug “forums”.

    You can mess it up if you have the same slugs for tags for posts and the forums, so watch out that you don’t break your site. The forum prefix is to save you from doing that, but if you watch what you’re doing it’s not that much of a problem to remove it.

    MTPrower
    Member

    That was the problem. You see, under the Settings page for bbPress, there is the Archive Slugs section. Under this is two settings: “Forums base” and “Topics base”. Due to the wording, I never knew that having the “Forums base” setting at its default, which is “forums”, I would never be able to use my WordPress-made custom forums page at http://www.mysite.com/forums , always getting the archives page instead of what I put in shortcodes on my custom page.

    Maybe the labels for those settings should be clarified, and the default setting changed. I see lots of people having trouble with this part, and I’ve been using bbPress for a year and just discovered the answer.

    Thanks for replying. I appreciate it. If I knew some PHP, and my site was done and I could spare some time, I’d help you with bbPress a bit. I know it must suck not having very many people helping out…

    MTPrower
    Member

    I found the bug. You cannot make the “Forums” page that you put shortcodes into a parentless page. If the page is http://www.mysite.com/forums , then going to that URL will only take you to the archive page. Actually, it seems there I might be able to edit that in the settings page. I just had no idea that THAT was what that setting meant. I’m going to go take a look.

    I’ve been using bbPress for about a year, and I just NOW discovered what was wrong with my permalinks. I think maybe the “archives” part of the settings page should be set to the word “archives”, not “forums” by default, so people don’t have trouble with this.

    Anyway, I’m gonna go mess with that setting and see what happens. I will post my results here for future people to see…

    #114113

    Can’t speak for the others; if scalability into the billions of posts is really your concern: at volume, the platform matters significantly less than the operators and system administrators keeping up with the growth. Most of your static content will be served directly from the cache, and there’s not much you can do about database writes; they have to happen anyways.

    If what you’re looking for is for someone to tell you that bbPress will out-perform some other platform is some specific way, I think you’re on your own. What I can tell you is that bbPress very much is in active development, and is optimized to use all of WordPress’s cacheing API’s, with constant efforts specifically going into further optimization in future versions.

    #114137

    Do not modify the core files that are included with bbPress.

    #112018
    MTPrower
    Member

    Is this topic resolved? I was ready to help, seeing that it was marked “Not resolved”, but it seems you have fixed your problem. If you think you’re ready, mark this topic as “Resolved”.

    #112017
    ryan a
    Participant

    My forum is created

    Permalinks set to post name

    Tried to add a new menu in the appearance tab

    Still cant see my forum on the website.

    Suggestions?

    UPDATE**

    Never mind, I figured out how to properly create a menu in the appearance tab.

    #113000

    In reply to: Remove toast/notice

    bbPress is free and we are all volunteers doing this in our spare time.

    We always try to help people when possible, however we don’t always have time to walk people through creating custom solutions for their every needs, it’s just not practical unfortunately.

    The best thing is to encourage users to do the research on their own and then contribute back to bbPress. If that’s out of their confort zone them sometimes the only other solution is for them to hire a developer or use a different, paid, forum software suite.

Viewing 25 results - 31,401 through 31,425 (of 64,517 total)
Skip to toolbar