Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forums Display Custom Menu

Published on March 14th, 2019 by csivertsesg

I want to display my “Forums” beneath a custom menu.

In image #1 I have a custom menu, with a tab for my forum.

Image #1

When I click on a Forum, I’m taken to another URL, where I can no longer see the custom menu (see image #2)

Image #2

Is there a way to have the custom menu appear on every Forum, or another solution would be to have the forum open in a new tab?

check if on forums directory

Published on March 14th, 2019 by shanebp

Is there a call to see if the user is on the all forums directory page?
The one that lists all the forums?
Something like bbpress_is_forums_directory()

bbpress.css is loading on homepage where there’s no Forum

Published on March 14th, 2019 by Mayeenul Islam

In one of our site, bbPress is used to display forum.
But bbpress.css is loading on the home page, where there is no widget or no forum.

Screenshot – taken on incognito mode (logged out):
http://prntscr.com/mxmh1n

Display correct counter

Published on March 13th, 2019 by lucju04

Hi everybody,

I made a custom display of topics for a specific forum. Like this:

<?php $args = array( 'post_type' => 'topic', 'posts_per_page' => 10, 'post_parent' => '410' );
					$loop = new WP_Query( $args );
					while ( $loop->have_posts() ) : $loop->the_post(); ?>
						<div class="bbp-forum-table__content--grid ">
					
							<div class="topic-title"><a href="<?php bbp_topic_permalink(); ?>"><?php the_title(); ?></a></div>
					
							<div class="replies-counter"><?php bbp_topic_voice_count(); ?></div>	
					
							<div class="posts-counter"><?php bbp_topic_post_count(); ?></div>
						
							<div class="user-freshness"></div>	
						
						</div>
				<?php endwhile;?>

But it’s seems that counter isn’t correct… Did I need to add something to count correctly the voice_count and post_count ?

I already try the repair tools 🙁

Thanks a lot 😉

Reply to posts

Published on March 13th, 2019 by ehasimon

Hi. When a user replies/comments on a certain post, the new post appears at the end of the chain of posts rather than underneath the post they are wanting to comment on. They, therefore, cannot easily view the other persons’ comment. How can this be fixed?

Guest Users Can’t See Original Post

Published on March 12th, 2019 by rngeer

Hello,

This one has stumped me. When a guest user visits our site and goes to a topic, they can see all the replies to a topic but not the original topic itself.

Has anyone ever had this issue?

Thank you,

Display topic list of a specific forum

Published on March 12th, 2019 by lucju04

Hi everybody,

I’m actually developing a Forum for a WordPress site.

My Home is composed by 3 sections. Each section is a Forum who list child forum (I’m ok with that it’s already ok). But the last section need to be a Forum who list topics of this Forum.

But when I try to use <?php echo do_shortcode( ‘‘ ); ?> it’s a mess.

my content-archive-forum.php looks like:


<div id="bbpress-forums">

	<div class="bbpress-header">
		<div class="bbpress-header__image">
			<img src="image.png" alt="Illustration sabre - Forum">
		</div>
		<div class="bbpress-header__headline"><h1>Welcome</h1></div>
		<div class="bbpress-header__lead-paragraphe">
			<p>
				Lorem ipsum dolor sit amet, consectetur adipiscing elit. <span>Donec vel auctor diam.</span> 
				Nulla odio diam, maximus ut libero ut, <span>pharetra ullamcorper</span> orci. Sed magna nisl, 
				pellentesque at ligula nec, condimentum viverra. Petit texte d’intro sur le forum (juste une idée)?
			</p>
		</div>
	</div>

	<?php bbp_get_template_part('user', 'bar'); ?>

	<?php bbp_breadcrumb(); ?>

	<?php bbp_forum_subscription_link(); ?>

	<?php do_action( 'bbp_template_before_forums_index' ); ?>

	<?php if ( bbp_has_forums() ) : ?>

		<?php bbp_get_template_part( 'loop','forums'); ?>

	<?php else : ?>

		<?php bbp_get_template_part( 'feedback', 'no-forums' ); ?>

	<?php endif; ?>

	<?php do_action( 'bbp_template_after_forums_index' ); ?>

</div>

How I can just add a section who display juste the list of the topic for a specific forum ?

Best regards ! 🙂

Customizing the welcome email

Published on March 11th, 2019 by reedy

Can someone remind me how to edit/customize the new user email that is sent to members when they register for the forum? I know this is editable because I have customized the welcome email but I can not remember how I did this (I didn’t use a plugin — that much I think I recall!).

Make All Forum Pages Full Width

Published on March 11th, 2019 by badrobot

Hi – I am running the Activetab Child Theme with a left side bar. The Pages menu includes an option to make the pages full width with no side bar. How do I do that to Forum pages? There are numerous solutions posted on this none of which work. There seems to be wide spread demand to have full width bbpress forum pages but no easy way to do it. It makes sense not have the forum pages crowed with side bar noise that is required on the main page but nowhere else. The lack of support for this is a serious weakness in the bbpress plugin.

I have a child theme implemented and have no problem adding bbpress specific overrides to the style sheet if they work and persist after plugin, theme and WordPress upgrades.

Move from wpForo to bbPress

Published on March 11th, 2019 by boka003

Hello,

Need to convert the wpForo plugin to bbPress.
I will like to move all topics from wpForo to bbPress if is possible,
Thank you

Skip to toolbar