Hi, on BBpress, the WordPress auto embed function doesn’t work properly when I put it into a topic of a reply post, it will cut off the box and not resize it properly. It does not have this issue outside of wordpress and I’m not sure how to fix it. I’ve tried messing around with some custom CSS addons with no luck. Also why are the auto embed images so blury?
See Link
Any help would be appreciated.
Thanks,
Shortcodes are not allowed in bbpress post as default. You need to check your code/plugin which allows shortcodes in bbpress posts, there might be the problem.
bbp_theme_before_forum_title
I could not do it.
It is same loop with bbp_theme_after_forum_title
bbpress.org shows that “23. Show the bbPress forum search everywhere”.
Layout and functionality β Examples you can use
But it may be that there is not hook point to set on the search form above of the title.
We are using latest bbPress version and have encountered problem that bbPress stop working quite frequently, it doesn’t find any post.
To fix the issue we have to disable plugin and enable again and it works again.
Question is how to troubleshoot this kind of issue?
that may be because they are empty, so bbpress doesn’t bother showing as option.
so is this all replies, many replies, some replies, all forums some forums?
We’ve been using wp-poll to insert polls into topics, but after moving web hosts and upgrading to bbPress 2.6.6 and WordPress 5.5 the shortcodes don’t appear to be working.
If I create a topic and put in the shortcode ‘[poll id=”93″]’, the post simply shows that shortcode. It doesn’t look like the shortcodes being rendered.
Has anyone seen this before, or have ideas on what I can try to get polls working again?
Thanks!
#bbpress-forums li.bbp-footer {
display:none;
}
I found it, posting it in case someone else needs to do it!
Hmmm… After hours, I found out, that the sentence in the registration confirmation email I posted above is a WordPress thing, not that of a plugin.
For translating and changing it, I would have to change things in some WordPress php files that deal with registration and confirmation. My knowledge of php is below zero… I even don’t know what these letters stand for. π
The plugins in use at the site do not provide an option to create new such email forms and overwrite the WordPress default ones. So, I may need a suitable plugin far that.
But that is not a bbpress thing, except, perhaps for a ‘golden tip’ which plugin for this works best together with bbpress.
How can I put on the search function above of the breadcrumb in forum,topic,reply page?
I got the Adding action code in the bbPress codex page.
but I did not get the hook point for the Adding action.
Please show me the hook point(XXXXXXXXXX) .
//display bbPress search form above sinle topics and forums
function rk_bbp_search_form(){
if ( bbp_allow_search()) {
?>
<div class=”bbp-search-form”>
<?php bbp_get_template_part( ‘form’, ‘search’ ); ?>
</div>
<?php
}
}
add_action( ‘XXXXXXXXXX'(forum,topic-page), ‘rk_bbp_search_form’ );
add_action( ‘XXXXXXXXXX'(reply-page), ‘rk_bbp_search_form’ );
οΌdefaultοΌ
γγγοΌγγγοΌγγγγγγγ
[Search function]γ
οΌCustomizeοΌ
[Search function]γ
γγγοΌγγγοΌγγγγ
Can anybody confirm if the above edit profile link still works as this is exactly what I am struggling with at the moment to provide a way for BBPRESS members to access their profile ?
There are options via paid plugin etc, but I am looking to achieve this at no financial cost if at all possible π
Home
I’ve Profile Builder and ProfileGrid active, but the email form I described above isn’t there.
Perhaps is it a core WordPress thing? But then, I also searched at other places at the site, but simple didn’t find those forms.It is neither in Contact Form 7.
Profile Builder has an option to check a confirmation email with a link to conclude the registration. But the form above isn’t there.
Where else should it be? I thought it is part of bbpress.
This is probably not bbpress related. Are you using profile builder or some other plugin?
I’m using BBpress 2.6.6 and WP v5.6
Hi All,
Recently, my forum is no longer allowing participants to post. only moderators.
The settings are activated correctly:
I’ve noticed the editors are looking different between moderator and participant, please see below:
I’ using BBpress v 2.6.6 and WP v5.6
my site is http://www.simplyexam.ca
Can someone tell me how to fix it so that participants can post?
P.S apology for the messy links I’m a noop to HTML
Thanks
Hello all,
I am in the process of migrating a phpbb forum to a bbpress forum.
In my phpbb forum, I have a forum for each group of students. and only they can see that forum.
(about 160 forums)
also I have a group of admins who can see all forums.
Is that possible in bbpress?
Thanks
Mickey
bbpress 2.6.6 is a minor release.
I think you need to do some debugging in your test environment. Which DB queries are slow etc …?
Here is the list of changes in 2.6.6
https://bbpress.trac.wordpress.org/query?group=status&milestone=2.6.6
GD bbpress toolbox pro has this feature.
But if you are searching something free, there are some old plugins like this, but I don’t know if it still works.
bbPress – Report Content
Hello people π
Dumb question, but, how I insert image in body of post here at bbPress support?
I want to ask question, and want insert image in post like I see others do here.
Thanks
Updated to 2.6.6 and wow did my server load spike! took me a week to figure out it was bbpress update as i also did many other updates that day anyways downgraded back to 2.6.5 all good. Any idea why this would happen? Forums are somewhat large but i dont think huge: Total forums: 36 β’ Total posts: 94,124 β’ Total topics: 7,381 β’ Total users: 36,925
what bbpress related plugins do you have (if any)
Hello,
my Forum http://www.exoten-forum.de is on the air for only one day now. When users postet interesting photos in “Test” I’d like to move the posting to the appropiate forum f.i. “Palm trees”. But this does not work. The “move” button only offers a new thread in the same forum. How can I move postings all over?
WP Version 5.6
Theme Twenty Twenty-One
BBPress Version 2.6.6
Site: http://www.exoten-forum.de
Pflanzenoma
How do I check if user has X number of posts inside bbpress forum to allow him to see blog post.
For example, for logged in user, it would be like:
function show_to_logged( $atts, $content = null ) {
if ( is_user_logged_in() ) {
echo 'Welcome, registered user!';
} else {
echo 'Welcome, visitor!';
};
add_shortcode('show_to_logged', 'show_to_logged');
function show_to_bbpress_user_with_x_posts( $atts, $content = null ) {
if ( user_has_X_BBPRESS_topics_or_topic_replies() ) {
echo 'Welcome, registered user!';
} else {
echo 'Welcome, visitor!';
};
add_shortcode('show_to_bbpress_user_with_x_posts', 'show_to_bbpress_user_with_x_posts');
What would be correct function for user_has_X_BBPRESS_topics_or_topic_replies?
Final post on this issue….all fixed…thank you neon67…never worked with CSS before…went in and explored all the bbPress css files…experimented and got it to work!!! YES!!!
Below is the code that fixed the alignment issue as well as avatar size:
#bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar
{
height: 20px;
width: 20px;
margin-right: 4px;
margin-bottom: -6px;
}
#bbpress-forums .widget_display_replies img.avatar, #bbpress-forums .widget_display_topics img.avatar, #bbpress-forums div.bbp-template-notice img.avatar, #bbpress-forums p.bbp-topic-meta img.avatar, #bbpress-forums ul.bbp-reply-revision-log img.avatar, #bbpress-forums ul.bbp-topic-revision-log img.avatar
{
margin-right: 4px;
}
This fixed the horizontal spacing issue.
Now whats left is the avatar size and moving avatar vertically slightly.
It depends the themes – either way, the theme is your choice.
In specialized bbpress-theme everything is fine usually.