Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 45,076 through 45,100 (of 64,526 total)
  • Author
    Search Results
  • #84566

    In reply to: bbPress mobile version

    56alifar
    Blocked

    Please let me know when its available

    #86135
    56alifar
    Blocked

    iframes is bad for your seo and if visitors come from searchengines it wil only show the iframe page and not the complete website

    #86134
    capsx
    Participant

    very basic plugin and uses iframes to provide access to bbPress:

    https://wordpress.org/extend/plugins/new-bbpress-admin/

    capsx
    Participant
    #86261
    Gautam Gupta
    Participant

    Download a fresh copy of bbPress and upload it to your server. This might solve your issue.

    #86161
    jomontvm
    Participant

    Hi Pagal,

    I have customized the permalink for bbpress, and it works fine. It’s still on the testing stage, though you can try this. The following is the modifications I have done.

    Step 1:


    Open ‘bb-admin/options-permalinks.php’

    You will find a permalink options declaration. Add one more option as shown below, it will add one more option in the permalink options in the backend. You can make the custom option with a text field, in order to customize in your own way (I have done in a predefined format in order to make it simple).


    $permalink_options = array(
    'mod_rewrite' => array(
    'title' => __( 'Permalink type' ),
    'type' => 'radio',
    'options' => array(
    '0' => sprintf( __( '<span>None</span> %s' ), bb_get_uri( 'forum.php', array( 'id' => 1 ), BB_URI_CONTEXT_TEXT ) ),
    '1' => sprintf( __( '<span>Numeric</span> %s' ), bb_get_uri( 'forum/1', null, BB_URI_CONTEXT_TEXT ) ),
    'slugs' => sprintf( __( '<span>Name based</span> %s' ), bb_get_uri( '/forum/first-forum', null, BB_URI_CONTEXT_TEXT ) ),
    'custom' => sprintf( __( '<span>Custom</span> %s' ), bb_get_uri( '/forum/%parent_slug%/%forum_slug%', null, BB_URI_CONTEXT_TEXT ))
    )
    )
    );

    Step 2:


    Now we have to create the custom format of permalinks for forums and topics.

    Open ‘bb-includes/functions.bb-template.php’

    We have to modify two functions ‘get_forum_link’ and ‘get_topic_link’. See the changes I have done for the custom permalink option.


    function get_forum_link( $forum_id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF ) {
    $forum = bb_get_forum( get_forum_id( $forum_id ) );

    if (!$context || !is_integer($context)) {
    $context = BB_URI_CONTEXT_A_HREF;
    }

    $rewrite = bb_get_option( 'mod_rewrite' );

    if ( $rewrite ) {
    $page = (1 < $page) ? '/page/' . $page : '';
    if ($rewrite === 'custom') {
    if ($forum->forum_parent > 0) {
    $parent = bb_get_forum($forum->forum_parent);
    $parent_slug = $parent->forum_slug;
    $custom_link = $parent_slug . '/' . $forum->forum_slug;
    } else {
    $custom_link = $forum->forum_slug;
    }
    $link = bb_get_uri('forum/' . $custom_link . $page, null, $context);
    } else {
    if ( $rewrite === 'slugs' ) {
    $column = 'forum_slug';
    } else {
    $column = 'forum_id';
    }
    $link = bb_get_uri('forum/' . $forum->$column . $page, null, $context);
    }
    } else {
    $query = array(
    'id' => $forum->forum_id,
    'page' => (1 < $page) ? $page : false
    );
    $link = bb_get_uri('forum.php', $query, $context);
    }

    return apply_filters( 'get_forum_link', $link, $forum->forum_id, $context );
    }

    function get_topic_link( $id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF ) {
    $topic = get_topic( get_topic_id( $id ) );
    if (!$context || !is_integer($context)) {
    $context = BB_URI_CONTEXT_A_HREF;
    }

    $args = array();

    $rewrite = bb_get_option( 'mod_rewrite' );
    if ( $rewrite ) {
    $page = (1 < $page) ? '/page/' . $page : '';
    if ($rewrite === 'custom') {
    $custom_link = '';
    if ($topic->forum_id > 0) {
    $forum = bb_get_forum($topic->forum_id);
    if ($forum->forum_parent > 0) {
    $parent = bb_get_forum($forum->forum_parent);
    $custom_link = $parent->forum_slug;
    }
    $custom_link .= '/' . $forum->forum_slug;
    }
    if (!empty($custom_link)) {
    $custom_link .= '/topic/' . $topic->topic_slug;
    } else {
    $custom_link .= 'topic/' . $topic->topic_slug;
    }
    $link = bb_get_uri($custom_link . $page, null, $context);
    } else {
    if ( $rewrite === 'slugs' ) {
    $column = 'topic_slug';
    } else {
    $column = 'topic_id';
    }
    $link = bb_get_uri('topic/' . $topic->$column . $page, null, $context);
    }
    } else {
    $page = (1 < $page) ? $page : false;
    $link = bb_get_uri('topic.php', array('id' => $topic->topic_id, 'page' => $page), $context);
    }

    return apply_filters( 'get_topic_link', $link, $topic->topic_id, $context );
    }

    Step 3:


    Now we have to define the htaccess rules.

    Open ‘.htaccess’ file in bbpress root folder, and add following two lines just above the code line – RewriteRule ^topic/?$ /forums/ [R=302,L,QSA].


    RewriteRule ^(.+)/topic/(.+) /forums/topic.php?id=$2 [L,QSA]
    RewriteRule ^forum/(.+)/(.+) /forums/forum/$2/ [L,QSA]

    Here is how my URLs looks after making these modifications:

    Forum URL: mysite.com/forums/forum/en/first-forum-in-english

    Topic URL: mysite.com/forums/en/first-forum-in-english/topic/the-ipad-developers-challenge

    #86307

    In reply to: Hide topics

    johnhiler
    Member

    One option would be to install Hidden Forums, and designate one folder as hidden to all but admins:

    https://bbpress.org/plugins/topic/hidden-forums/

    Then if you wanted to hide a particular topic, you could just move it into your private forum… :-)

    Trekkr
    Member

    Same… I’ve tried for the last hour to get the install to work…

    Everything seems to integrate fine and it says “what are you waiting for” i finish the install and it says it installed with some errors…

    I’ve cleared the tables 2 times and completely deleted the database once and every time at the end of the install i get this – Oh dear! bbPress is already installed.

    I did what one of the threads said, which was to add dummy data to the forum table and then it loaded the forum, but i had no access to the admin section, could not log out and could not create any new posts, it just showed the dummy forum and me as logged in and that was it… SO I’ve uninstalled the database again and will try again tomorrow I guess… Bummer, cuz i was really hoping to have a forum tied into my wordpress site…

    I’m too tired to post the details now and must go to bed, but if I run into this issue again tomorrow I’ll post here again all the details…

    #85753
    wemaflo
    Member

    @Arturo:

    Great news! Thanks!

    #85752
    gerikg
    Member

    cool thanks!

    I couldn’t get the buddybar to work but I was able to have both group forums and bbpress forums.

    http://img267.imageshack.us/img267/2127/wpbbbbp1.jpg

    http://img32.imageshack.us/img32/1755/wpbbbbp2.jpg

    #86298

    In reply to: All forums RSS feed?

    gerikg
    Member

    https://bbpress.org/forums/rss

    Is that what you’re looking for?

    #33875
    ishutan
    Member

    Hi There,

    I’m new to BB press and am trouble shooting a possible problem, but want to make sure I’m not banging my head against a wall here.

    My question is as follows:

    Is there anywhere to subscribe to an RSS feed for all of the forums, rather than having to subscribe to every forum individually?

    For example, I’d like to subscribe to a feed for all the forums here: http://bbpress.org/forums/

    Rather than having to subscribe to each forum individually, like here: http://bbpress.org/forums/forum/troubleshooting

    Any additional info or input is greatly appreciated, thank you!

    #86222

    In reply to: IRC Chats

    infected
    Participant

    Well… I am not very active in this forum because my english isn´t very good. But what i´ve read in the linked forum thread (Gautam) worries me a bit. For me it looks like the project going to it´s end. There´s no developement since month and Matts statement somehow reiterated this. I like bbPress very much, because there´s no forum plugin for wp which has such a performance as bbPress. Okay, i know bbPress isn´t a plugin but with the wp-integration it is really an alternative. Maybe a statement about bbPress future would be nice.

    #86230
    johnhiler
    Member
    #84563

    In reply to: bbPress mobile version

    I personally use the PHP class found at http://detectmobilebrowsers.mobi/.

    include(‘mobile_device_detect.php’);

    $mobile = mobile_device_detect();

    if(!mobile)

    {

    //echo TinyMCE code

    }

    I had this as a plugin on bbProgress, but i see they’ve even shut their doors (no more message on front page). I’ll try and boot up my old dev machine and find it as a plugin when i get home

    #84562

    In reply to: bbPress mobile version

    bforeste
    Member

    Strong interest in this plugin…will be waiting for details.

    I can do basic testing as well – happy to help.

    bforeste

    bforeste
    Member

    Hi Chris – just checking back in & saw you replied. I haven’t touched it in a couple weeks, so I’m not fully up to speed yet (I totally dropped the upgrade…too many wasted hours with 2 kids).

    I’m re-skinning my WP site for my business. As part of that, I’m upgrading to 2.9.2 – so I figured since I was “elbow deep” so to speak – I would update bbPress as well. As a side goal – wp/bb integration would be a nice to have, but many of my users won’t play in both spaces…so not a show-stopper.

    I was puzzled to with the new install finding existence of an out of date DB. I will look again at the config files and see if there is a remnant of a URI or similar.

    thx

    bforeste

    #84752

    In reply to: Plugins You Want !!!

    Arturo
    Participant

    a plugin to add bbpress posts, replies, etc in buddypress activity

    #85751
    Arturo
    Participant

    after the easter vacation i release the theme! now is working great and all the function are ok ;)

    ~12-15 april.

    sorry for the delay, a new post coming with the link to download the theme.

    #86296
    johnhiler
    Member
    #86293
    johnhiler
    Member

    Yah I don’t think that plugin works in v1.0+:

    https://bbpress.org/plugins/topic/unread-posts/page/3/#post-3983

    A number of plugins don’t work in 1.0… unless you have a developer who can help update the plugins, your best bet may be to stay on 0.9.

    #33870
    bramruiter1
    Member

    Is this thing on? Great.

    I’m currently updating my forum to a newer bbPress version and a nicer looking theme. Everything was going fine until I bumped into a few plug-in issues. I have searched the forums and came across this topic, which seems to mark my problem but never gets resolved.

    A recap: I have used the _ck_ plug-in Unread Posts on bbPress 0.9.0.2 and it worked well. I had a bug once in a while (with a topic staying unread, even though I have read it), but it did it’s work properly. When there was a new post, the title of that particular topic went bold. When I clicked on it, the link would lead me to the post which was my last read post. And when I got back to the frontpage, it stopped being bold.

    Now I have downloaded the Unread Post plug-in again and installed it on bbPress Version 1.0.2 for my new forum. Result: the topics stay unread until I logout and the bold titles don’t take me to the last read post.

    So I’ve tried the earlier version by fel64. Indicate New Post doesn’t do anything either. It mimics Unread Post’s bugs.

    Unread topics on the other hand trashed my front-page and won’t take me anywhere since topics does not have an URL like this http://www.domain.com/<div id=.

    I’m really lost here, since these are unresolved problems everywhere I look.

    Could someone please help me out? Please?

    #33864
    56alifar
    Blocked

    Hi there,

    If you are looking for a BBpress and WordPress developer, than i’m your man!

    I’m studying WP for about 4 years and BBpress for about 1 year now.

    I make high premium WP sites with fully BBpress integrated.

    See my latest project: http://www.jahw.nl / forum: http://www.jahw.nl/forums

    I have an updated list with the best plugins and latest hacks for both WP and BBPress.

    If you are looking for help, don’t hesitate to contact me via my contact page on my website: http://www.jahw.nl/contact

    #85705
    56alifar
    Blocked

    Thnx for your answer KEvin, how can this be done?

    #86220

    In reply to: IRC Chats

    djsteve
    Member

    I think there is a lot of interest in bbpress, but I am betting that Matt and all the others are slammed busy with the WP3.0 release and trying to make sure everything works with the WP/MU merge, and bussypress – which is fine with me – it’s very important not to break the million of WP blogs when the updates become available.

    Hopefully enough independent developers will work on bbpress plugins and themes to add some spark to it, and the interest will continue to grow. I am sure that buddypress will continue to grow and that will spur even more interest in bbpress plugin development as well.

    It would be nice to get a semi-weekly – (every two weeks) blog post from matt and then we could all add comments and have it grow from there – it may be more productive than the IRC meets.

Viewing 25 results - 45,076 through 45,100 (of 64,526 total)
Skip to toolbar