Search Results for 'bbpress'
-
Search Results
-
Hi
Currently running bbPress 2.6.4 and would like to understand how to remove / hide the default search bar that appears at the top of the Forums page listings
I have in a side bar widget set-up ‘GD Power Search for bbPress’ – (works very well), just need to remove the Search bar from the top of the Forums page as looks out of character for my forum
Forum is https://uktechhub.com/forums/
Thanks
Topic: Mark all forums as read
I’m checking this very old plugin
Isn’t this implemented by default in bbpress nowadays?
Hi…
I’m trying to combine bbPress and bbPress Topics for Posts addon in a certain way. But I needed to extend the bbPress Topics for Posts, a dev. work which was successful.But in the process of extending the addon plugin, the “Apply settings to existing posts” section in the addon setting was touched, which created unwanted forums that needed to be deleted. So I reset the forum completely.
But now, I’m hitting on “Apply settings to existing posts”, but it is not working with old post?. Please, what can I do to get old post to sync again?
Topic: Incorrect Forum stats
Hi there,
We seem to be getting some discrepancies around the panels which include the following for example:
—
‘This forum has 3 topics, and was last updated 3 weeks, 5 days ago by Name Surname.’
Viewing 4 topics – 1 through 4 (of 4 total)—
Sadly on our set-up, these stats don’t seem to be matching up to the actual real edits, ie it states 3 topics, when there are 4, which you can see by the second line the system displays, it says ‘Viewing 4 topics’ yet above it says there are only 3 topics?
Is this standard, and maybe we are just misunderstanding what it’s counting? If anyone has any advise that would be so much appreciated :).
We are using:
– WordPress v: WordPress 5.3.2
– bbPress v: Version 2.6.4
– Sadly can’t include a link as it’s behind a login restricted area but we can liaise if anyone can help and facilitate this accessThanks ever so much,
TonyaTopic: Split up my Tags page
I have a page that just shows tags https://wateratairports.com/airports-by-iata-code/, it is working great and getting bigger over 300 it could grow to 1000 which is OK on a big screen but on a mobile, not good, I would like to add a line at the top of the tags offering a shortcut ie if you want A-F click this then it will take the user to a page that shows tags stating A and ending with F.
I am sure I can create the line with links to another page, where I am having a problem is how to only return the tags between A and F.
The template I am using is
/**
* Template Name: bbPress – Topic Tags
*
* @package bbPress
* @subpackage Theme
*/get_header(); ?>
<?php do_action( ‘bbp_before_main_content’ ); ?>
<?php do_action( ‘bbp_template_notices’ ); ?>
<?php while ( have_posts() ) : the_post(); ?>
<div id=”bbp-topic-tags” class=”bbp-topic-tags”>
<h1 class=”entry-title”><?php the_title(); ?></h1>
<div class=”entry-content”><?php get_the_content() ? the_content() : _e( ‘<p>This is a collection of tags that are currently popular on our forums.</p>’, ‘bbpress’ ); ?>
<div id=”bbpress-forums”>
<?php bbp_breadcrumb(); ?>
<div id=”bbp-topic-hot-tags”>
<?php wp_tag_cloud( array( ‘smallest’ => 15, ‘largest’ => 15, ‘number’ => 400, ‘taxonomy’ => bbp_get_topic_tag_tax_id() ) ); ?>
</div>
</div>
</div>
</div><!– #bbp-topic-tags –><?php endwhile; ?>
<?php do_action( ‘bbp_after_main_content’ ); ?>
Is there a way to select what tags are shown ?, I am happy to create more templates.
hope this makes snese