Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 47,201 through 47,225 (of 64,510 total)
  • Author
    Search Results
  • #82066

    @jackey – maybe the problem is theme related. Did you try to activate the default Kakumei theme and see if bbPolls behave normally? This would help pin down the problem.

    #80395

    I have a workaround for the navigation issue.

    This does not solve why some plugins are not working with integration (which would still be nice to know, and what code would fix it), but allows to have consistent menu tabs when integrating the theme. It involves using theme options for excluding pages, rather than a plugin.

    Incidentally, my theme already comes with the option to exclude pages from navigation, but I still used PageMash for other handy features… Then it occurred to me to test if the options would be reflected into bbPress, and sure they were!!! This way, no core code changes, all is controlled from within the theme.

    @arpowers – I am sure you already know how to do this. Posting links just in case, for others as well.

    To create the theme options page, there are tutorials, showing code to add to functions.php

    http://forthelose.org/how-to-create-a-theme-options-page-for-your-wordpress-theme

    http://blog.themeforest.net/WordPress/create-an-options-page-for-your-WordPress-theme/

    in the arrays to exclude the pages, this is what I have:

    array(	"name" => "Main Menu Settings",
    "desc" => "The navigation menu tabs at the top.",
    "id" => $shortname."_admin_heading",
    "type" => "info"),

    array( "name" => "Exclude",
    "desc" => "Enter a comma-separated list of Page IDs to be excluded from the main menu tabs (example - 5,9,22).",
    "id" => $shortname."_exclude_pages",
    "std" => "",
    "type" => "text"),

    array( "name" => "Sort by",
    "desc" => "'<strong>menu_order</strong>' - sorts the Pages by Page Order<br /> '<strong>post_title</strong>' - sorts Pages alphabetically (by title)<br /> '<strong>post_date</strong>' - sort Pages by their creation date.",
    "id" => $shortname."_sort_pages",
    "type" => "select",
    "std" => "menu_order",
    "options" => array("menu_order", "post_title", "post_date"))

    I hope this helps!

    #82065
    jackey
    Participant

    Tried re-installing it after an update to iBlogForum 1.02.

    But still the same. When I click to add a poll, nothing happens.

    When I try to alter the Polls’ configuration or reset it to default, it wipes my iBlogForum configuration.

    Another strange behaviour that I do not know if it is related… everywhere were I enter quotes, bbPress changes this to ‘ time over time so after a few edits you end up with \\\\\’

    #81763
    Michael
    Participant

    I see – thanks for telling me that. :) The change is not urgent – so I’ll stick to my current bbPress installation. It seems to be doing the trick just fine. I’ll probably even land up extending it myself.

    :)

    #81762

    @Alex Luft – Focused intent within a community can move mountains! :-)

    @Michael888 – As of now, BuddyPress works only with WPMU. It does not run as a standalone, because it is built as a set of plugins. Rumors said that the code for WP single user and WPMU would merge soon. I still have a test community area with everything installed and it’s the ideal combo. Didn’t transfer the blog there because of the announced merge… have been waiting for a year now. If the social network capability is urgent for you, you may want to use WPMU for the time being, and merge later.

    BuddyPress is another good reason why I don’t see bbPress coming to an end. A forum is an integral part of the social networking (group forums, etc.). BP itself relies on bbPress currently. From their site:

    Groups also include a group forum (bbPress), and wire where group members can engage in discussions.

    #32457
    bingsterloot
    Member

    Hi all

    I have been looking for the solution, but only found small hints here and there with no real complete guide on how to do it, so i have made a small one that should explain it in a simple way.

    (THIS IS BASED ON WP 2.8.6 AND BBPRESS 1.0.2 WITH WP INTEGRATION VIA BBPRESS ADMIN.) If you have older versions installed, i recommend to read this exelent post by ck: http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101

    step one: Add this string to your bb-config file in your bbpress folder:

    require_once(‘/home/ your username/public_html/your wordpress folder/wp-blog-header.php’);

    NOTE: The path might be different from host to host, but this is what my path looks like……you get the idea ;O)

    step two:

    Go to your WP template folder, and open up the file: header.php from your chosen template.

    Copy over the content you want after the <BODY> tag, and copy it into your BBpress header.php template file after the <BODY> tag.

    What i did here was to take a backup of the original BBpress header.php file, so i could paste in the things i needed from this file to the new one i just

    created with the WP header content.

    step 3 your css files

    My approach to this was of course to take backup of both WP css and BB css files first. I used the BBpress css file as my main css file. I then took the css strings from the WP css file i needed, and simply copied them into my BBpress css file. In my case i needed the header and navigation strings.

    NOTE: You might also need to copy the WP css body string, if your BB css Body string has different font measures. Some use EM´s and some use %. This will affect how your fonts react.

    And that´s it folks. I hope you understand this, and if other people has something to add to this plz. do so we all can learn.

    Mike

    #32456

    Topic: bbpress theme

    in forum Themes
    Urme
    Member

    Is this (bbpress.org) theme downloadable somewhere? I really like this theme.

    #81069

    In reply to: Help out with bbPress

    Michael
    Participant

    Greetings

    I am glad to hear that an effort is being made into ensuring the continuity (and maturing) of bbPress.

    If I could, I would help out a lot where I could. Unfortunately, I’m still in the learning phase with PHP and MySQL. This as I learn by experience.

    In the long-term however, I would like to help out as much as I can. I do have a strong taste for interface design, and new ideas.

    I’ve always said to myself that forum software seems to be all the same, from brand to brand. Already, bbPress is defying that. bbPress has a lot to offer, and I’d like to extend it somewhat.

    In my case, I have released a development community forum (http://www.inniosoft.co.cc/devstation) using bbPress – so that shows one thing. Many people have different purposes for using forum software. With my community (which is still small – it’s new) I wish that it would be more socially interactive. I am in the middle of writing a plugin that will make user-profiles more interactive (ie Status updates, etc). In the long term, I’d like to cater for that kind of thing. Bringing new things into bbPress that don’t seem to exist any any other forum software. Of course, in this case, my idea would only be useful for those using bbPress as a standalone package (ie without integrating it with WPMU and BuddyPress).

    I can see that bbPress will ba amazing software one day – competing with the likes on vBulletin and phpBB. If anything, I’d love to be involved with getting it there.

    #81761
    Michael
    Participant

    I’m happy to hear it that way. After looking at bbShowcase, I just thought that it was done. I’d be so happy to see 1.2 come out. In fact, I can’t wait to see 2.0 – I’m sure it’ll have a stack of new features.

    But you’re right, and like I said as well, there’d be no good reason to end it.

    I know this is off-topic, but I’d just like to ask something. BuddyPress seems to be such a brilliant piece of software. Can it only be integrated with WordPress MU? Can it not run standalone? The whole idea for my site is to have a simple community-driven system for all areas of development. The forum seems to be doing the trick, and as good as it is, BuddyPress would cater for the concept so much better than bbPress does.

    Thanks for the optimism – I wasn’t worrying, however. :)

    #81760
    Alex Luft
    Participant

    Then, we’ll see WP 3.0 (with wpmu merger) + BuddyPress 1.5 + bbPress 1.2

    the perfect blog/social network/forum combo

    I can already visualize it on my dashboard!

    A cheerful moment of optimism :-)

    I hope you’re right! I really do! I really like bbPress for its simplicity and flexibility. There still remains work to be done (better commenting integration with WP), but I hope it pulls through!

    #82152
    Ben L.
    Member

    Add these to the list:

    bbPM

    bbPress Moderation Suite

    Role Manager

    Automated Forum Moderation

    #72210
    Ben L.
    Member

    http://bit.ly/4LJlfj (a graph of the daily downloads) – 18 downloads this week, 6 of which were from today.

    It would benifit the bbPress community as a whole if Matt or MDA (or anyone else with access to the repository) could put up some kind of notice on the Private Messaging plugin page that tells about the security risks.

    #32447

    It has been a while, since the alpha/RC-1 times, that we had a list of working plugins, so I thought to create a list of working plugins with the current version 1.0.2, that we can all add to, in order to help other users. Many plugins are listed as up to v. 9.0, but they do work with the latest release (that should be updated, so it doesn’t look like 1.0.2 has very little options…).

    Here is my list at the moment, planning on testing more.

    1 – Ajaxed Quote

    2 – Allow Images

    3 – BB Anonymous Posting

    4 – bbPress Recent Replies

    5 – bbPress signatures

    6 – bbPress Smilies

    7 – bbSocialize

    8 – bb Topic Views

    9 – BBVideo

    10 – Check For Updates

    11 – Comment Quicktags for bbPress

    12 – Human Test for bbPress

    13 – Instant Password

    14 – Leaderboard

    15 – Live Comment Preview

    16 – Members Online

    17 – New User Notification Email

    18 – no duplicate email addresses

    19 – OpenID for bbPress

    20 – Post Edit Look Behind

    21 – Post Meta for bbPress

    22 – Post Notification

    23 – Reputation (Karma) for bbPress

    24 – Subscribe to Topic

    25 – Unread Posts

    26 – WordPress Latest Post

    27 – bbAvatars

    28 – Bavatars

    29 – bbPolls

    30 – After the Deadline

    #82064
    Marius-
    Member

    Alright, I’ll give it another try this weekend. Just need to finish up some schoolwork first.

    #81068

    In reply to: Help out with bbPress

    paulhawke
    Member

    I would be glad to help out in any way I can.

    I have an offline monthly fiction writers group I run, who coordinate via a bbPress forum. Administration of that’s been a breeze, and I can think of no better forum software to use. So I’ve had experience simply administering a bbPress installation (admittedly with only a couple of dozen active users).

    I’ve been creating custom themes & plugins for bbPress for a while for my own enjoyment, aiming to bend the software into new and interesting places. For instance

    1. making a very “blog-like” theme giving strong emphasis to opening posts with all replies looking like comments & discussion of the opening post
    2. writing and enhanced form of the RSS portion of the site to use bbPress as a super-flexible podcast hosting site generating iTunes compatible feeds
    3. Forum specific theming (a gaming site who wants an “XBox theme” active for certain forums, a “W.o.W theme” in others, etc)
    4. creating a fine-grained access control mechanism for forum/topic/board ownership and read/write privilages (to support separation of gaming forum admin, and multiple podcasters for 2 instances of its use)

    Prior to hacking on the bbPress codebase, plugins and themes I lived in WordPress land – themes and plugins – using it for blogs, CMS and podcast hosting.

    I write HTML/CSS/PHP for pleasure. Java/XML/etc is the day-job.

    #82063

    I just installed and tried the plugin on my local test forum (1.0.2) and it works just fine.

    Select to show the poll on new topic, first fill out the poll questions, then write your post and submit. The poll appears automatically when the topic is started (no need for a “save” button under the poll creation field).

    Guests can read the poll (if so selected), but not vote. Only members.

    I tried both with ajax enabled or disabled. And single vote or test mode with multiple votes. The issues could be a plugin conflict.

    #32441
    Rebtl
    Member

    I have been looking for a way to allow my blog readers to create a profile on the site as a way to build community.

    I just want a setup that will allow users to create a basic profile and have a basic profile page

    -name

    -picture

    -recent comments

    -number of comments

    -member since

    etc

    I heard that bbpress would be a good way to do this, but I don’t actually want the forum, just user profile pages for all of their activity on the site. (mostly commenting etc)

    Is this possible?

    Thanks,

    Rebtl

    #80393
    arpowers
    Member

    I believe that the problem is that the plugin settings and other data are stored in the wp_options table

    I don’t think this is the issue. Options set in WP seem to work fine.

    Something else is causing it.. probably a global variable set in WP that isn’t set in BBPress for some reason…

    #81759

    @Michael888 – bbPress won’t come to an end. We are just going through a temporary halt.

    Once we see v. 1.0.3, we’ll know that bbPress has made it though the bump. I bet things will pick up again after WP 2.9 is released.

    Then, we’ll see WP 3.0 (with wpmu merger) + BuddyPress 1.5 + bbPress 1.2

    the perfect blog/social network/forum combo

    I can already visualize it on my dashboard!

    A cheerful moment of optimism :-)

    #81884

    In reply to: Problems with bbpress

    chrishajer
    Participant

    I registered just fine with bbPress. You will see my registration there.

    #81758
    citizenkeith
    Participant

    It’s such a pity it had to come to an end.

    Who said that it has come to an end??? See the sticky post on this forum’s front page.

    #81757
    Michael
    Participant

    Hi all

    I downloaded bbPress about a week and a bit ago, and I find it extremely user-friendly. It’s such a pity it had to come to an end.

    It’s also unfortunate to hear that it had ended mostly based on the fact that Sam left – a replacement could have been appointed to continue developing such great forum software.

    Unlike most forum software – bbPress is extremely easy to extend. This is one of the reasons I am using it. It’s compatibility is great.

    If I was able to – I would continue the development of bbPress myself – though it would not feel right as I am not part of Automattic, thus I do not have the rights to the source-code. All I can do for now is work on what I have, and continue using bbPress for as long as possible.

    At present, I run a [new] development community called dev:station (http://www.inniosoft.co.cc/devstation), proudly powered by bbPress. The only reason I would switch from bbPress is to extend my concept in to a social-site, instead of a forum-based site.

    I really do hope that, in the future, bbPress will be re-incarnated – maybe as something completely new. In fact, if anything, that would be a good idea: Create a new package. Start from scratch.

    Furthermore, WordPress still uses bbPress for its forum – I doubt that it will be gone for too long.

    @buddha trance: I completely agree with you – I think we should keep it alive and kicking. If anything, Automattic may realize that bbPress should be in continual development. It would make me very happy, if not everyone else.

    #82062
    jackey
    Participant

    I have also issues with BBPress Polls. The plugin activates, and shows in the interface, but does not react. Re-installes several times. But no results.

    Tried to alter the settings, and it wiped out all settings of my iBlogPro Forum Theme.

    This behavior is reproducible (and a real pain).

    FYI I’m a newby to bbPress…

    Any advice welcome.

    #82061
    johnhiler
    Member

    Please reinstall it and post a detailed bug report – we may be able to figure out the issue for you. It also may be a conflict with another plugin, which you could resolve by deactivating that other plugin (or finding an alternative).

    #82148
    johnhiler
    Member

    There won’t be any changes to bbPress for quite some time… if Matt does replace Sam, it will take time for any new release to come out.

    So actually, this is probably the most stable time in the history of bbPress’ codebase to be making themes or plugins!

Viewing 25 results - 47,201 through 47,225 (of 64,510 total)
Skip to toolbar