Skip to:
Content
Pages
Categories
Search
Top
Bottom

Old Posts Won’t Load, Just Sits There Trying

Published on January 2nd, 2016 by vypersden

I have old posts that won’t load, the browser just sits there trying to. They seem to be posts that were migrated, around 6 months ago. Newer posts don’t have a problem. I can edit the post in the backend.

I tried changing types of permalinks, used the forum repair tool, and lots of reading and can’t figure it out.

I am a newbie with this, so if it’s obvious, please let me know.

Website http://www.mega-brew.com/forums/
WordPress 4.4
bbPress 2.5.8

how can I insert posts in bbpress

Published on January 2nd, 2016 by mafcojp

how can I insert posts in bbpress?I insert in mysql database, but not show it.
I indicate the query:

INSERT INTO web_posts (
ID,
post_author,
post_date,
post_date_gmt,
post_content,
post_title,
post_status,
comment_status,
ping_status,
post_name,
post_modified,
post_modified_gmt,
post_parent,
guid,
menu_order,
post_type,
comment_count
)
VALUES (
”,
3,
‘2016-01-02 10:35:59’,
‘2016-01-02 10:35:59’,
‘xxxx’,
‘xxxx’,
‘publish’,
‘closed’,
‘closed’,
‘xxxx’,
‘2016-01-02 10:35:59’,
‘2016-01-02 10:35:59’,
8,
‘http://xxxx/xxxx/forums/topic/xxxx’,
0,
‘topic’,
0
);

thanks..

Plugin for Private Post Forum

Published on January 1st, 2016 by tammy1999

I am looking for a plugin which will allow only the admin to add new topics to the forum. All other members are allowed to post to the topics, but not allowed to add topics to the forum. I saw bbPress plugin, but it seemed to be out of date. Thanks

Border colour

Published on January 1st, 2016 by yandoos

Hello I was hoping for some help please . I’ve just made the background colour of my forum a darker shade (see below) and now I need to change the border colours from white to a slightly duller shade.

How can I do this please?

.entry-title {
background: #212121;
}

#bbpress-forums div.odd,
#bbpress-forums ul.odd {
background: #212121;
}

#bbpress-forums div.even,
#bbpress-forums ul.even {
background: #212121;
}

Issue with default theme page title

Published on December 31st, 2015 by kieranw7261

Hi all,

I have page titles which have a line beneath them.
However on the forums pages the line is missing. Can someone please tell me how I can go about customising this part of my site:

Title issue, cant customise it.

Kind regards

Display the ‘New Reply Form’ for a specific Topic ID

Published on December 31st, 2015 by parmaker
  1. When visitors come to a forum and click a topic from the topic index list, bbpress elegantly shows the lead topic and replies and Reply-to form on the topic page.
  2. I wanted to hide the reply form box, instead, put a link of pointing to a regualr wordpress page so that only visitor who wants might write a reply for that topic by clicking the link.
  3. So I copied a page from parent theme dir into the child theme dir, and named “forum_new_reply_form.php” and changed like :

    /**<br>
    * Template Name: Forum New Reply Form<br>
    *<br>
    * @package WordPress<br>
    * @subpackage Twenty_Sixteen<br>
    * @since Twenty Sixteen 1.0<br>
    */<br>

    get header(); ?><br>

    < div id=”primary” class=”content-area”><br>
    < main id=”main” class=”site-main” role=”main”><br>
    < ?php <br>
    // Start the loop.<br>
    while ( have_posts() ) : the_post();<br>
    // nothing to do here <br>
    endwhile;<br>
    ?><br>
    < ?php <br>
    global $wp_query;<br>
    if (isset($wp_query->query_vars[‘reply_to_this_topic’]))<br>
    { <br>
    ?><br>
    < div class=”my-bbp-reply-form”><!– bbp-reply-form –><br>
    < ?php <br>
    $reply_shortcd = ‘

    • You must be logged in to reply to this topic.
    . ‘”]’;<br>
    echo do_shortcode($reply_shortcd);<br>
    ? ><br>
    < / div><!– bbp-reply-form –><br>
    < /main><!– .site-main –><br>

    < ?php get sidebar( ‘content-bottom’ ); ?><br>

    < / div><!– .content-area –><br>
    <br>
    get sidebar()<br>
    get footer() <br>

  4. Go back to functions of childtheme, put this action

    add_action(‘bbp_template_after_single_topic’,’my_bbp_reply_form’);<br>
    function my_bbp_reply_form() {<br>
    if (!current_user_can(‘publish_replies’)){<br>
    return;
    }
    $t = ‘< div class=”my-bbp-new-reply-form-link”>’; <br>
    $t .= ‘< a href=”http://kabum/write_reply_page/?reply_to_this_topic=’ . bbp_get_topic_id() . ‘” title=”‘ . bbp_get_topic_title() . ‘”>’;<br>
    $t .= ‘< /a>< / div>’;<br>
    echo $t;<br>
    }

  5. From content-single-topic.php, commented out

    bbp_get_template_part( ‘form’,’topic’);<br>

    so, i can see the lead topic and a link mentioed at 4), and replies if any.

  6. For debugging purpose, I copied form-reply.php into childtheme/bbpress, changed one line like this :

    // printf( __( ‘Reply To: %s’, ‘bbpress’ ), bbp_get_topic_title() );<br>
    echo ‘I am replying to ‘ . bbp_get_topic_title();<br>

    under < legend > of < fieldset > of that file.

  7. When I clicked the link which was added at 4), a reply form pops up without any topic and replies !! hurray !!!

    But disaster !!, <br> the page http : / /kabum/write_reply_page/?reply_to_this_topic=1234<br>
    shows <br>
    I am replying to “forum title” (the title of the regular page housing the template “Forum New Reply Form”)<br>

    It should have shown <br>
    I am replying to “topic title” (of topic id 1234)

  8. I learned that bbp_topic_id and bbp_reply_to are 0, that triggered fetching parent id of a topic.

    The page source of browser does even show html < input hidden name=bbp_topic_id value in the page.<br>
    The page of http://kabum/write_reply_page/?reply_to_this_topic=1234, exactly tells <br>
    reply_to_this_topic is 1234

  9. I changed topic_id of shorcode bbp-reply-form atts with reply_to before retrying.<br>

    Same thing happened.

  10. At the writing of this post, bbpress org documentation regarding to bbp-reply-form shortcode,<br>
    is not clearly saying about shortcode atts, but topic is .
  11. in case topic creation, i did the similar way as mentioned above, works fine. no need to do with jquery stuff.
  12. bbpress outof box has action as h t tp://kabum/forums/topic/topic_title/#newpost, but my reply form page is
    h t tp://kabum/topic_title/?reply_to_this_topic=1234, i.e./forums/forum is sit in or not. In my reading of showrcode source, I can’t find any clue of hansdling atts reply_to hopfully i was wrong reading.

==

Hopfully, looking forward to anyone’s help.

Forum_id shortcode and pretty name

Published on December 31st, 2015 by rayjay

Hey guys
I am creating a link to creat new Topic form and using the
href=”mysite/forum/<?php bbp_forum_id(); ?>/#new-post”>Create New Post

I get the links parsed as
href=”mysite/forum/6/#new-post”>Create New Post

notice the 6!
I have permalinks on so how to force the shortcode forum name?

Thanks

Forum Freshness Not Updating

Published on December 31st, 2015 by Chappers39

Hi All

me again , sorry

I have noticed that people ARE posting withing a topic but the actual forum page freshnesh is not updating here is a link:

http://www.harrisonchapmankarate.com/forum-pages/
Within the Health / training section you can see the last time on this is 1 week ago, but if you do go into that section you will see at least 2 topics fresher than that

any advice is much appreciated

H

Need advice

Published on December 31st, 2015 by DYTW

I am keen to create a forum for my 2 websites that have been in existence for over a year in order to entice visitors to hang around and engage each other on key topics that are very dear to me. I originally intended to use MyBB for my 2 websites World Of Leathers and CarBuyerSg but received advice from MyBB forum members that the current different WordPress themes on my websites are not suitable for MyBB and will likely conflict with it.

I downloaded bbPress for both websites but didn’t dare to activate them after it crashed another website of mine that was a one Page website using the free So Simple Theme By Press75. The So Simple theme is one of the cleanest and most basic free WordPress theme available with really clean codes and meant for simple basic websites so I am now really afraid to activate it on my 2 websites that are using premium WordPress themes from Studio Press and Elegant Themes. Does anyone have any experience using bbPress for the Lifestyle Pro Theme by Studio Press or the Divi Theme by Elegant Themes?

Cant get into replies in admin

Published on December 30th, 2015 by Chappers39

Hi Guys for some reason i cant get into the replies section

Internal Server Error getting this error –

The server encountered an internal error or misconfiguration and was unable to complete your request.

Everything else works perfectly – anyone seen this issue before?

H

Skip to toolbar