Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,976 through 26,000 (of 64,518 total)
  • Author
    Search Results
  • #133501

    In reply to: update 2.3 problems

    kannued
    Participant

    When I removed the bbpress Moderation, nothing happened.

    Thanks for the link on hiding the bbpress search box, Jared.

    Now, all I need is to get my latest posts back on my front page.

    #133500

    In reply to: update 2.3 problems

    See this post regarding bbPress Moderation.

    https://bbpress.org/forums/topic/bbpress-2-2-4-to-2-3-created-a-big-problem/

    The plugin is currently not compatible with bbPRess 2.3. The author has been notified and is working on a fix, but until then you should deactivate it.

    Here is a snippet to hide the bbPress search box.

    https://bbpress.org/forums/topic/bbpress-2-3-now-available/#post-133171

    #133499
    Pippin Williamson
    Participant

    Please see the documentation for Using bbPress in Your Language to see how you can supply your own files: https://codex.bbpress.org/bbpress-in-your-language/

    #133495

    In reply to: update 2.3 problems

    kannued
    Participant

    Previously only the wordpress search was on the page on the left side column. I thought that would be sufficient to search through bbpress posts especially with the plugin that I have, see below. I would like to disable the bbpress search box.

    My plugins are bbpress, bbpressmoderation, bbpress topics for posts, en Spam, search bbpress 2.0, and wanguard.

    Here is my link. http://www.canadianbookclubs.com/forums2/

    Where you see the forum summary section, it used to be the latest posts.

    #133493

    In reply to: update 2.3 problems

    The new search is a bbPress specific search and while the previous one is a WordPress search. Do you want to disable the bbPress one?

    Can you provide me with a list of plugins you are using? That is likely the culprit at play here.

    #133492

    In reply to: update 2.3 problems

    kannued
    Participant

    And there is a new search box above the new forum summary page. So now I have two search boxes on the page. One that is set by wordpress, and one that has appeared courtesy of the updated bbpress plugin

    Is there any way to revert back to the bbpress plugin before this last update?

    #133491
    kannued
    Participant

    I updated bbpress. Never had problems with the previous updates. Now, I have the following problems on my front page:

    Oh bother! No topics were found here! (why has this appeared? Comes from div id=”bbpress-forums” and div class=”bbp-template-notice”

    Even though my front page is checked for latest posts. It is now showing my forum summary page. Why is bbpress plugin superseding the wordpress of only showing latest posts?

    I never changed anything in bbpress files.

    #133490
    losting
    Participant

    Whenever a user posts a comment it redirects them back to the very beginning of the conversation instead of letting them continue to read/comment from the current place. There are several pages of comments so its really annoying to have to keep scrolling down again and find where you left off. Can this be fixed?

    Site: http://brandschool.brandtwist.com/login/
    Specs: I’m using WordPress 3.4.2 and BBPress 2.2.4.

    Thanks for your help!

    #133488
    Muhammad Haroon
    Participant

    Hi there,

    Thanks in Advance…

    I’m facing a problem that the topics are not displaying in forum. I use WordPress + Genesis Framework + bbPress + Genesis bbpress Extend (plugin).. What to do?

    #133487
    Sami Keijonen
    Participant

    Ok I recreated this issue with Twenty Twelve theme.

    I copied archive.php and renamed it archive-topic.php. I copied content-page.php and rename it content-topic.php. And I get what I want in url domain.com/topics. Here is screenshot, normal archive “page” with topic title/content using bbPress 2.2.4.

    https://dl.dropboxusercontent.com/u/11753008/Pysyvat/archive_2.2.4.jpg

    Then I update to version 2.3 and this is end result. No loop, no topic content.

    https://dl.dropboxusercontent.com/u/11753008/Pysyvat/archive_2.3.jpg

    I’m on WP 3.6-beta1-23997.

    #133484
    Klaas Koopman
    Participant

    Hi All,

    I am working on bbpress on my new site, so it works together with buddypress. But I really hate the way the url structure looks on the forum.

    now it’s forums/forum/test and I changed that already to forum/subject

    But now when I look at a topic, it’s /topic/post instead of forum/subject/post.

    Any way to fix this? I did find some guys talk about a nicer permalinks plugin, but when I click that link I keep getting back to a post about it on this forum…

    I got the latest install of wordpress, buddypress bbpress

    Robin W
    Moderator

    From the sticky on the upgrade put the following into your CSS

    `.bbp-search-form {
    display:none !important;
    }`

    #133482
    Stephen Edgar
    Keymaster

    Apologies for the late reply but a severe case of the flu has kept me from thinking šŸ˜‰

    Firstly @clicknathan the bbconverter plugin has not been updated in a long time and is what the actual included converter with bbPress 2.x is based upon and indeed if you keep importing on top of imports you are going to have issues.


    @trisham
    I cannot come up with a specific SQL query for you to delete the duplicates, ideally what you want to do is open phpMyAdmin and find the post ID’s of your imports.

    i.e. Find the ‘first’ and ‘last’ post ID from your first import and then find the ‘first’ and ‘last’ post ID from your second import.

    `SELECT * FROM ‘wp_posts’ WHERE ‘post_type’ LIKE ‘forum’`
    `SELECT * FROM ‘wp_posts’ WHERE ‘post_type’ LIKE ‘topic’`
    `SELECT * FROM ‘wp_posts’ WHERE ‘post_type’ LIKE ‘reply’`

    The above queries you should see you started to see the post ‘ID’ for the duplicates and I would expect to find them in a numerical order by post ‘ID’ and this starts to build you a range of post ‘ID’ that you will want to delete.

    You may find that the range of post ID’s are eg. 2650 – 5299 that are the duplicates that you need to remove and this SQL query highlights those posts `SELECT * FROM ‘wp_posts’ WHERE ID BETWEEN 2650 AND 5299 ` and this query `SELECT * FROM ‘wp_postmeta’ WHERE post_id BETWEEN 2650 AND 5299 ` finds the same posts in `wp_postmeta`

    Once you have confirmed the post ID’s for your duplicates with the queries above and you are confident you have the correct ID’s you grab those SQL statements eg. `SELECT * FROM ‘wp_posts’ WHERE ID BETWEEN 2650 AND 5299 ` and `SELECT * FROM ‘wp_postmeta’ WHERE post_id BETWEEN 2650 AND 5299 ` and change the `SELECT * ` to `DELETE` for both of those queries to remove the posts from `wp_posts` & `wp_postmeta` tables.

    I hope this makes some kind of sense and if you have any questions please ask away.

    #133481
    Sami Keijonen
    Participant

    Yes naturally. But I don’t want to spend your time before I know is it theme issue or not. As you said if it’s working for you, it’s hardly a bbPress bug.

    atburi
    Participant

    Looking to solve the same issue šŸ™‚

    mchelles
    Participant

    Just updated to bbpress 2.3 and noticed I now have a search bar at the top of my forum! Is there a way to remove it? Any ideas or suggestions much appreciated!

    #133465
    carlosdanzos
    Participant

    Hi, I have a site that have only one wordpress and some standalone bbpress 1.1 (like 7) and I want to upgrade all the bbpress, but now bbpress is a plugin of wordpress. So how can I upgrade all the 7 bbpress ??
    Should I install several plugins of bbpress?? or could upgrade or import all the bbpress in only one plugin ?? or what is the best way to upgrade my bbpress??

    #133464
    markworwood
    Participant

    Thanks, Ian.

    I was just about to revert to bbPress 2.2.4 and then I saw your post.

    I have got it running on my website and I will post any serious issues.

    iosqar
    Participant

    Hi!

    A week ago I migrated my vbulletin forum to bbpress, and everything seemed to be working fine until yesterday.

    I’m using bbpress 2.3, the forum shows all counters, but to see the detail of each subforum it just shows nothing. The funny thing is that if the URL of each subforum I add “?view=all” parameter … it shows all!

    i.e

    1.-If you type the url of my forum:

    http://myforum.com/foros/

    All is fine til here …

    2.-select a subforum

    select the GENERAL subforum

    http://myforum.com/foros/foro/general/

    and then displays the following:

    As I mentioned above, if i put “?view=all” parameter you will view all content

    http://myforum.com/foros/foro/general/?view=all

    and then displays the following:

    I have not changed even one line of plugin code (neither blog)

    Any Idea?

    Thanks!

    #133459

    Depends what the boolean function is comparing. Can you open a new topic in the forums here, and be more specific?

    #133454

    Sigh. No; first I’ve heard of it, and totally lame that’s happening.

    Do you mind opening a ticket over at http://bbpress.trac.wordpress.org?

    #133453

    Looks like it did change, but only for the positive in this regard:

    https://bbpress.trac.wordpress.org/changeset/4336

    #133452

    My guess is no; or that the default option value changed in 2.3 (I don’t recall) and there is no option in the DB.

    Did you modify files in the bbPress plugin folder? If so, they get wiped out on every update, which is why the theme compatibility feature exists. (Do a search for it in the codex to learn more.)

    #133447

    Do you have auto role set in the bbPress settings?

Viewing 25 results - 25,976 through 26,000 (of 64,518 total)
Skip to toolbar