Hi,
I use a subscribe theme – be|theme and installed ‘bbPress’.
Users can register in site and login.
After login, user can write and read on bbPress without troubles.
But, when click author image(or name) even my icon, error 404(not found page) is occurred.
To click my profile in site, site move to “…/wp-admin/profile” but
to click my profile(other user profile) in forum, site move to “…index.php/forums/users/USERID”.
So,,, user information is not shared in site and in forum maybe..
I want this :
https://bbpress.org/forums/profile/hyeries/
How to solve it?
I hope replies.
http://www.watchair.tv
Using: Buddypress 2.4.3, bbPress 2.5.8, WordPress 4.4
Theme is Trendyblog.
bbPress plugins: bbPress-WP-tweaks, bbPress toolbox
——————————————————————————————-
This is bizarre – most links to profiles on my website ego direct to he use profile as expected. In some cases though, where the user in mentioned in a topic name, the links foes to the topic instead of the profile.
For example:
A.J.’s profile link works correctly: http://www.bruuuce.com/members/a-j/
My profile, though, redirects to a topic: http://www.bruuuce.com/members/si/
The only thing I can think of is that both pages redirect to a topic that specifically mentions the user’s name. Could this be the cause, and how do I get around it?
Does anyone have any ideas how to fix this, please?
Thanks for your time.
are these private forums? if so see
Oops! That page can’t be found on Sub Forums with WordPress 4.4
if not, come back with a link to your site
Wordpress v 4.4
Bbpress v 2.5.8
This is th initial setup of the site
can you confirm what version of bbpress and wordpress you are on, and that this occurred following an upgrade of bbpress
I like the bbpress support forum how would I go about making my forum look similar right now its stock.
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
The out of date one is bbPress Protected Forums and thanks for the new plugin to look at.
Hi,
bbpress works with ‘topics’ and ‘replies’, not with posts.
Just use the functions provided like bbp_insert_topic. If you want more details, you can always check http://hookr.io/plugins/bbpress/2.5.6/functions/bbp_insert_topic/
Pascal.
Hi,
Some people that came here for questions were using the Divi theme and it seemed to work fine as the questions were related to layout.
For the Lifestyle Pro, some people copied bbpress file to a child theme to be able to tune things.
But I fully agree with Robin that a test site is what you need !
Pascal.
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..
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
I’ve managed to do it with the following css.. I do wonder if there is a more efficient way?
.entry-title {
background: #212121;
border-color: #000000 !important;
}
#bbpress-forums div.odd,
#bbpress-forums ul.odd {
background: #212121;
border-color: #000000 !important;
}
#bbpress-forums div.even,
#bbpress-forums ul.even {
border-color: #000000 !important;
background: #212121;
}
#bbpress-forums {background:#212121 !important;}
#bbpress-forums ul li{background:#212121 !important; border-color: #000000 !important;}
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;
}
- 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.
- 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.
- 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 = ‘[bbp-reply-form topic_id=”‘ . $wp_query->query_vars[‘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>
- 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>
}
- 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.
- 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.
- 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)
- 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
- I changed topic_id of shorcode bbp-reply-form atts with reply_to before retrying.<br>
Same thing happened.
- 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 [bbp-topic-form forum_id=$forum_id].
- in case topic creation, i did the similar way as mentioned above, works fine. no need to do with jquery stuff.
- 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.
Yes
bbpress has own theme that you can modify..
The best advice I can give you is to create a test site for each of your live sites.
This not only allows you to test new plugins, be confident in taking and using backups but also be happy that you can re-create your site should your host provider go bankrupt and you lose everything.
https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/
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?
If anyone runs into this wondering the same thing, I got this working using this code:
<?php global $current_user; get_currentuserinfo(); $uid = bbp_get_current_user_id(); ?>
<?php if ( bbp_get_user_topic_subscriptions( $uid ) ) : ?>
<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
<?php bbp_get_template_part( 'loop', 'topics' ); ?>
<?php bbp_get_template_part( 'pagination', 'topics' ); ?>
<?php else : ?>
<p><?php _e( 'You are not currently subscribed to any topics.', 'bbpress' ); ?></p>
<?php endif; ?>
Basically you just have to specify the current user’s ID number in the bbp_get_user_topic_subscriptions function. I’m running into another weird problem that I haven’t been able to fix though: If this is in your sidebar and you view a single forum, it will only display the subscribed topics within that forum.
Hope this helps someone.
It’s just a simple, single forum right now:
“http://monkey2.monkey-x.com/forums/forum/monkey2-development”
(note: quoted because for some reason it doesn’t show up on this forum as plain link?!? The one below works)
Clicking on ‘forums’ takes me to:
http://monkey2.monkey-x.com/forums/
I’m completely new to wordpress/bbpress, although I have written a few simple LAMP sites in the past.
Thanks in advance for any advice!
not really a bbpress issue
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.
Then come back
Yes, bbpress keeps removing links – bit silly when I’m only trying to help !
try again
http://www.rewweb.co.uk/topic-subscribe/
and
http://www.rewweb.co.uk/reply-subscribed/
Hi,
I’ve just successfully setup my first bbPress forum!
It works, except that if I navigate ‘up’ to the ‘forums’ page using the breadcrumb trail, I get an unusual looking page that just says ‘bbForums’ followed by something like:
“Search for: Home › Forums Forum Topics Posts Freshness Monkey2 Development Monkey2 Development Discussion 0 0 No Topics Monkey2 Development Monkey2 Development Discussion 0 0 No Topic”
No apparent layout and no links in there.
I assume this is supposed to be a forum list, but it looks messed up. Any idea what I’ve done wrong?
Bye,
Mark