Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '"wordpress'

Viewing 25 results - 14,876 through 14,900 (of 26,892 total)
  • Author
    Search Results
  • #110839
    raphaelsuzuki
    Participant

    Hello, again.

    Every slug related to bbPress gives me page not found:

    http://www.nelioguazzelli.com.br/rede-de-negocios/

    I’ve heard that changing permalinks can mess with bbPress slugs, needing to hit save button in it settings to it start displaying form listings again. Maybe it’s the case, but that’s not working too.

    I’ve also heard that maybe my WordPress setup is not aware of bbPress existence (this is more common in version 1.0) and need some extra work, but in this case I don’t have a clue.

    #41028
    Martin
    Participant

    Hi,

    I’ve just embarked on moving my Drupal based site, blog and forum over to WordPress.

    So far so good until I get to what forum software I need to use.

    To use any forum software inside WP, I need to move WP posts into the forum software as a forum topic.

    Can bbPress do this for me or am I wasting my time? Any suggestions would be great.

    #81585
    David Decker
    Participant

    @bollocks187

    I don’t agree here. SimplePress has do many features for a lot of users/use cases. Yes, it works, it’s active developed and maintained. I tested the new 5.0 beta two weeks ago and it’s still feature overload and a totally different user interface different from “normal” WP… And regarding translation they don’t go with WP standards here and so until they fix some things I could not get it into German. Old 4.x branch is no option because I need optimized code for a new project and also future-proof with WP 3.3+

    bbPress — I only mean the plugin version 2.x — on the other hand is really simple but has all I need. It works with almost any theme/framework and I could easily tweak it via CSS. This is a big advantage. Performance-wise it’s really leightweight and future-proof with WP because of custom post types for forum contents.

    YES, I know it has not so many features – a few could be added via plugin add-ons – and I assume a lot more will come in the next weeks or month.

    IMHO bbPress 2.x is best for small to middle-range communities, best for simple support forums and such. If I need a full packed forum solution with ALL the many and big features I almost always will use a third-party solution like Vanilla, IPB or new XenForo. These have clean style and great UI in frontend AND backend. And with some work of integrating could be work together with WordPress too. — Just look at the newly launched support forum by iThemes.com – they use IPB Forums and it’s great for such a big community.

    However, there are some great new bbPress forums out there, see at devpress.com, wpcandy.com, support.pippinsplugins.com, getshopped.com etc. So the bbPress plugin has already proven to manage such communities and they’re doing great.

    I vote for bbPress and at the same time have much respect for the work of the Simple:Press devs but just would not use their system!

    -Dave :)

    David Decker
    Participant

    This plugin adds useful admin links and resources for the bbPress 2.x Forum Plugin to the WordPress Admin Bar.

    Info & Download here:

    http://wordpress.org/extend/plugins/bbpress-admin-bar-addition/

    Description from Readme:

    This small and lightweight plugin just adds a lot bbPress 2.x related resources to your admin bar. Also links to all setting/ tab pages of the plugin are added making life for forum administrators/ moderators a lot easier. So you might just switch from the fontend of your site to ‘Topics’ or ‘Main Settings’ page etc.

    As the name suggests this plugin is intended towards forum admins/ webmasters and moderators. The new admin bar entries will only be displayed if the current user has the bbPress/ WordPress cabability of moderate. (Note: I am open for suggestions here if this should maybe changed to a more suitable cabability.)

    Plugin/ Theme Support:

    At this time the plugin out of the box supports also links to settings pages of some bbPress 2.x specific add-on plugins!

    Special Features:

    Not only supporting official bbPress 2.x sites ALSO third-party and user links – so just the whole bbPress 2.x ecosystem :)

    Link to downloadable German language packs – only displayed when German locales are active (de_DE, de_AT, de_CH, de_LU)

    Link to official German bbPress forum – only displayed when German locales are active (de_DE, de_AT, de_CH, de_LU)

    NOTE: I would be happy to add more language/locale specific resources and more useful third-party links – just contact me!

    Localization:

    English (default) – always included

    German – always included

    .pot file (bbpaba.pot) for translators is also always included :)

    Have fun with this little add-on!

    I am open for feedback of course!

    -Dave :)

    #41000
    dino_rox
    Member

    So, I need an integration between WordPress and bbpress posts.

    E.g.: I post a new post (!) in my blog and automatically it creates a topic in my bbpress forum. They share the same comments.

    Is it possible (of course, but you know)? Somebody knows some plugin that do it?

    Sorry my english…

    #110446
    ebiznet88
    Member

    I am glad to read this.

    I too have been looking to replace my phpbb board and integrate my existing forum with WordPress.

    I’m concerned with the slow speed of responses and development on bbpress.

    I know the developers are all doing this voluntarily and in their spare time. There are no guarantees in life and so even though people and companies may say they are committed to something, it doesn’t mean its forever as things change so rapidly in this world. We just have to move forward in faith and hope that things improve.

    #65427

    In reply to: adsense sharing plugin

    Anderson Mak
    Member

    I dont know, I adde adsense in my forum directly editing the pages of the theme, see at: http://ajuda.blogwordpress.ws/

    #110799
    Anderson Mak
    Member

    If you want it, you can see the default layout of bbPress at my own forum: http://ajuda.blogwordpress.ws

    #40995

    Topic: Just My bbPress Site

    in forum Showcase
    Anderson Mak
    Member

    Hi, I started using bbPress there are 2 days, see my forum at: http://ajuda.blogwordpress.ws

    My forum is about WordPress and bbPress

    #110789
    hmTodd
    Member

    Hate to answer my own question, but in case anyone wants to try this here is some sample code to start with –

    <html>
    <body>
    This is it.
    <?php
    // include WordPress
    define('WP_USE_THEMES', false);
    require('./blog/wp-load.php');

    // Handle INSERT if data is Posted
    if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == "bbp-new-topic") {
    $new_topic = array(
    'post_parent' => $_POST['bbp_forum_id'], // forum ID
    'post_content' => $_POST['bbp_topic_content'],
    'post_title' => $_POST['bbp_topic_title']
    );
    $topic_meta = array(
    'forum_id' => $new_topic['post_parent']
    );

    $topic_id = bbp_insert_topic($new_topic, $topic_meta);
    echo('<br>Topic ID = '.$topic_id . '<br>');
    } // end INSERT

    // Use Shortcode to show New Topic Form.
    // Could also create your own form.
    echo do_shortcode('[bbp-topic-form]');
    ?>
    Thats it.
    </body></html>

    #110796
    spiritfly
    Member

    yeah, every research about example bbpress forums ends up with some examples that were posted 3-4 years ago and when you try to open them you end up on either a parked domain or just another dead 404 page. It seems like those pages that had bbpress were somehow doomed and failed miserably.

    Even the official demo examples at https://bbpress.org/about/examples/ are no where to be found. Technorati doesn’t seem to have a forum anymore and the support forum is only accessible for VIP wordpress members.

    It seems like the only working examples of bbpress are the wordpress forum and the bbpress forum. This doesn’t really leave any good impression. I’m getting second thoughts about installing bbPress.

    #40992
    andeeh
    Member

    Hi guys,

    First of all thanks for your continued efforts to build bbPress. I’ve followed the HowTo video and that got me up and running with the templates reasonably quickly. I created my own child theme of 2010 and re-skinned it. All seems to have worked well.

    My only remaining issue so far as I can see is that there is no way for the user to know that they have registered. The email gets sent out but there really needs to be something like “Thanks for registering, you’ve been sent an email.”

    On my system when you register the registration form doesn’t change so it looks like nothing happened.

    Inspecting the POST submission with fiddler I can see that there’s a “redirect-to” field. I suppose that’s what I need to change to redirect and give the message, but what message should I display?… considering that the mail server could be down or something, I wonder if there’s a status code or whatever? What do you normally do?

    thanks,

    AndyH

    PS: After trawling the forums for tips I found these plugins helpful and complimentary to a bbPress install…

    Members (for fine grain permissions)

    SB Welcome Email Editor (to edit the registration emails, works well)

    WP-reCAPTCHA (captcha at registration)

    Private Messages for WordPress (for a basic pm system)

    0xDE1E7E
    Member

    Provided you are talking about the integrated multisite solution and bbpress 2 (not the standalone versions): yes, that should work. In multisite mode, you always have one main site which holds all the users. All sites in the network work with this network-wide userbase, so a bbpress installation on any network site will also do so. :-)

    #40986
    lyradmil
    Member

    This is the current situation: I currently have running several wordpress/buddypress sites across individual independent servers and am still in the planning phase of hooking them all up using the wordpress multisite strategy. One parent site -> multiple children sites. The immediate issue lies in having a sole and central forum space for this network of sites, provided by the parent site. I need all members of the children sites to automatically be members of the parent site in order to participate in the sole and central forum. One way to automatically add members has been provided.

    I also need to be able to create:

    Individual forum themes – Depending on where you are accessing the forum from, the displayed forum should adopt the theme from the child or parent site, e.g. when a member accesses the forum through a link found on child_site_A, the displayed forum should be skinned with child_site_A’s theme, and if the forum is accessed on child_site_B, it should be skinned with child_site_B’s theme. One way I can see this being done is to use php include and adopt the specific style sheets accordingly from the child’s site.

    I’m certain I am not the only person experiencing an issue like this, since it seems like a potentially common problem but I have not found any such solutions around. Any help/suggestions will be greatly appreciated. Thanks.

    spiritfly
    Member

    Hello to all :)

    I have multiple WP blogs on different domains. I would like to unite all of them in one WP MU installation. I know it’s possible and I think I can manage to pull that of.

    After that, I would like to install bbPress on another X.com domain. Is it possible to connect all of the WP MU domains users with the users at bbPress? So if someone registers at bbPress can log in at any WP MU domain, and vice versa.

    Actually I’m pretty sure that can be done, but I need to know how and if there would be any drawbacks to that solution? Will it remain stable and so on?

    Thanks

    #110660
    tgiokdi
    Member

    I was going through my mental checklist of possible problems, and I realized that I’m sharing the user table with two or three subdomains that are using separate installations of wordpress. I’m assuming that your code has no way to see if there’s comments or posts on those other wp-posts tables?

    #103286

    In reply to: Just a Community

    Snat
    Member

    bbPress is no longer used on that website (would edit the link if I could) after I handed the site over to be ran by the community so what you are likely looking at now is the theme I designed for the new forum script they use.

    Also I see you have the lates posts showin instead of just the forum.

    How did you do that?

    If that is the bit I am thinking you are looking at, that is simply just the build in WordPress feature that pulls from a RSS feed.

    #98186

    In reply to: Just a Community

    Snat
    Member

    bbPress is no longer used on that website (would edit the link if I could) after I handed the site over to be ran by the community so what you are likely looking at now is the theme I designed for the new forum script they use.

    Also I see you have the lates posts showin instead of just the forum.

    How did you do that?

    If that is the bit I am thinking you are looking at, that is simply just the build in WordPress feature that pulls from a RSS feed.

    #110422

    In reply to: bbpress & WordPress

    maxfaction
    Member

    @tony lies… sorry for sounding so medieval lol, but i installed it on a non-twenty ten theme and it works just fine.

    mind you, it took jackie chan style css kungfu to make it look right, but its doable :-)

    #87306

    In reply to: wordpress integration

    laneuio
    Member

    disposable tattoo tips tattoo starter, tattoo equipment kits.

    #40958
    marius2z
    Member

    Hi,

    On my website I have in root folder of the domain (www.example.com/) all html static pages. Some time ago I installed on that website the WordPress package, for blogging. As it was allowed in standard setup, WordPress files are located in http://www.example.com/wp/ folder and blog is accessible via http://www.example.com/blog/.

    Recently I decided to add forum to the site, using existing WordPress installation. After bbress plugin installation, when I configure the forum, it is by default appended to blog – current WordPress starting folder and addressed as http://www.example.com/blog/forum/, which is messy and confusing.

    How to setup bbpress in this environment to have forum root separated and directed to http://www.example.com/forum/ in parallel to blog http://www.example.com/blog/?

    Any help would be really appreciated.

    #110763
    flatworld.jp
    Member

    I have install wordpress and bbpress seperately.

    http://www.sscn.jp

    http://bbs.sscn.jp

    but the database name is the same.

    I find twitter tool for wp.

    >Frankly it should not be that difficult to modify a number of the twitter posting plugins to work with >bbPress as bbPress uses WordPress standards 100%.

    But I do not konw programmin.

    I am wondering why nobody make such plugin for bbpress.

    I think many bbpress users are searching for it.

    #110762
    Anointed
    Participant

    Nothing specific to bbPress, however topics are nothing more than a custom post-type for WordPress.

    That means if you can find a twitter plugin for WordPress where the plugin author set it up to work with custom post-types, then you are set. Frankly it should not be that difficult to modify a number of the twitter posting plugins to work with bbPress as bbPress uses WordPress standards 100%.

    #110743

    There are bound to be other forum themes and plugins for WordPress, and they are welcomed; variety is the spice of life and all that.

    It’d be great if their time was instead spent on improving bbPress, but I understand that contributing to another project outside of their control isn’t what a lot of people want to do. bbPress is the best opportunity of all the .org projects; the audience is small so the ability to shine is huge. Big fish, small pond.

    I’ll add that if it’s bbPress or anything else, you’re still placing your trust in someone to do something that you aren’t. I work closely with the WordPress core team on almost a daily basis to ensure that both BuddyPress and bbPress are as secure and functional as possible, push updates out quickly when needed, and manage the support forums and sites as well.

    Anointed is correct that WordPress 3.3 addresses any performance issues with permalinks in WordPress. I’d go as far as to say that you DON’T want your forum area to use a date-based structure because the date would be based on the topic creation date and not the most recent replies. You risk your topics being intermingled with your blog, which will be confusing to most users.

    #110739
    Jaja..
    Member

    Thanks for the help..

    Nope totally not, just found that board system by accident..

    I think bbPress is a great product and it works fine.

    The few problems i face are based on WPMU install and testing it locally most of them are my own fault..

    I’m trying to make a homepage (WP-website1) with only my blog onto it and a second page (WP-website2) called members with a few forums and some posts on helping very new WordPress users with just some easy steps, as i’m not a professional myself.

    Nothing to difficult but the theme i’m using is this one and it’s a little bit old.

    http://store.informationarchitects.net/product/ia³-template

    It’s a great theme, and i only bought it because of it’s Responsive design. The double drop-down select menu’s when viewing on mobile device is just great.

    After installing i started to delete almost every feature because i don’t need them, i Love to keep everything as simple and clean as possible. Less is more..

    Because i’m not a Pro, and don’t know anything about PHP i just have to do everything by searching online, looking inside the WordPress Codex and copy-/pasting everything i see and what i think i can read-/understand.. (i do have HTML-/CSS knowledge)

    So till now and still working on it i came up with this:

    A custom made Widget that i have dropped on the homepage between the blog lay-out to let people know there is a support forum.

    http://i56.tinypic.com/25gcb36.png

    A tabbed forums view with different options.

    http://i54.tinypic.com/2vjel3q.png

    Latest topics view.

    http://i52.tinypic.com/2rcydra.png

    And i customized the Post Toolbar plugin from Master5o1

    http://i52.tinypic.com/2zxxqbm.png

    As you can see there is still lot to work on, the single pages , replies, edit pages and others.

    Lucky it’s just a hobby and i have time. :)

    ** O there is one thing i would really love to see inside bbPRess and thats comments-/reply counts.

    Just an option to view how many replies a user has given and maybe a user level attached to it.

    Like less than 50 posts = New

    50 to 100 = Average

    250+ = Pro user.

    That would be cool to have.

Viewing 25 results - 14,876 through 14,900 (of 26,892 total)
Skip to toolbar