Published on November 2nd, 2019 by Danishsard
Hello, on the list of forum topics avatery are visible, how can I hide or delete them. I just need a username without these pictures.
I don’t know where to turn it on or how to enable it, even by editing the forum file code
My forum page https://infomiasto.eu/forum/tematy/rozmowy/
Published on November 2nd, 2019 by stracy2
I’m using WordPress 5.2.4, bbPress 2.6 RC 7. I can privately give anyone in-the-know and willing to help a link to a test site.
Symptoms – A search with one word typically works, but a search with more than one word typically gives HTTP error 500. Another symptom, the search first results page isn’t themed.
The symptoms occur with any/all themes, with all plug ins disabled except bbpress.
The symptoms appear like a server resource issue, but this is an AWS machine and more memory/CPU, increasing memory_limit in php.ini, doesn’t change symptoms.
Is there a limit on database size bbPress can handle? The site has roughly 18K users, 100 Forums, 30K Topics, 160K replies.
I’m grateful for any help, direction, diagnostics.
Published on November 1st, 2019 by berry metal
I want to output bbPress single topic shortcodes with different IDs, through my single post template.
On post with the title “A” shortcode
- You must be logged in to reply to this topic.
, on post with the title “B” shortcode
- You must be logged in to reply to this topic.
, etc…
And the matching I need it via title strings, meaning that the topic with id 6041 would have the title “A”, and the topic with id 6042 would have the title “B”.
How to achieve this, and what would be the dynamic query?
I am using bbPress instead of comments, as they are post type, and I want to use this advantage.
Published on November 1st, 2019 by Babblebey
Hello there,
Thank you for viewing this thread.
I am trying to set a button for based on users current forum subscription status
When a User “is not Subcribed” to Current Forum
<button type="button" class="btn-lg omna-btn-green shadow-sm" id="forum-subscription-btn"><i class="fa fa-bell"></i> <?php bbp_forum_subscription_link(); ?></button>
<p>Subscribe to this forum and get updates on latest topics</p>


When a User “is Subscribed” to Current Forum
<button type="button" class="btn-lg omna-btn-green shadow-sm" id="forum-subscription-btn"><i class="fa fa-bell-slash"></i> <?php bbp_forum_subscription_link(); ?></button>
<p>Unsubscribe from this forum and stop receiving updates on latest topics</p>

So My Code is suppose to look something like
<?php if (user_is_subcribed_to_this_forum): ?>
<button type="button" class="btn-lg omna-btn-green shadow-sm" id="forum-subscription-btn"><i class="fa fa-bell-slash"></i> <?php bbp_forum_subscription_link(); ?></button>
<p>Unsubscribe from this forum and stop receiving updates on latest topics</p>
<?php else: ?>
<button type="button" class="btn-lg omna-btn-green shadow-sm" id="forum-subscription-btn"><i class="fa fa-bell"></i> <?php bbp_forum_subscription_link(); ?></button>
<p>Subscribe to this forum and get updates on latest topics</p>
<?php endif; ?>
The right function to use in-place of user_is_subcribed_to_this_forum is what i seek.
Thanking you in anticipation of a working response.
Published on November 1st, 2019 by Babblebey
Hello there,
Thank you for viewing this thread.
I have a sidebar on the Homepage of my website that should list latest forum topics. But the number of topics listed is being determined by the “number of topics” set per-page in the “Forum Settings”.
Is there a way to setup an argument($args) similarly to that of the new WP_Query($args) to set a custom of topics per-page.?
Here’s my query:
<!--Sidebar Start-->
<div class="col-md-4">
<div class="sidebar-topics row sticky-top">
<div class="col-md-12 col-sm-12 col-12 ml-2 mb-2 p-1">
<h3 class="">Latest Forum Topic</h3>
</div>
<div class="col-md-12 col-sm-12 col-12">
<?php
if ( bbp_has_topics() ):
while ( bbp_topics() ) : bbp_the_topic();
get_template_part( 'template-parts/topic', 'card' );
endwhile;
endif;
?>
</div>
</div>
</div>
<!--Sidebar Ends-->
Published on October 31st, 2019 by drjohndimi
Hello All.
I think this would be a great feature to have. Once a user creates/submits a topic, a popup appears and prompts the user to share his/her post on FB, Twitter or Whatsapp (possibly with the button in the notification message.
Is there already a solution to this out there (maybe in a plugin or helpful code).
Thank you for your time.
JD
Published on October 31st, 2019 by Chuckie
When we are editing a topic / reply it would be nice if I could change the wording of the Submit / Submitting button to Update / Updating. This would be more accurate feedback for the user.
I am using the bbp style pack forum template.
Published on October 31st, 2019 by lightsourceptaah
I’m using bbpress v2.5.14 with WordPress 5.2.4 running OceanWP v1.7.1
Website url: https://ptaah.com.au
How do I edit the Forum page?
I want to add an introduction paragraph and a Login button.
I’m a beginner, this is my first web adventure – please help!
With many thanks, Anne
Published on October 29th, 2019 by Lovage
Hi, there!
I use the latest version of bbPress. Just found a login status issue on my forum https://forum.themevan.com
Reproduce the issue:
– Access to a sub-forum page before logging in
– Log in your account
– Back to that sub-forum page
You will see the reply form still doesn’t display and this page is unlogged in status, if you refresh this page, it works fine.
How to fix this issue?
Thanks!
Published on October 29th, 2019 by Chuckie
In my breadcrumbs the root is Forums.
Technically this is fine because it does show a Forums page. But I also have my primary support forums page. Two examples:
The link as clicked on the Forums breadcrumb:
https://www.publictalksoftware.co.uk/forums/
The link as clicked on my website menu:
Support Forums
They are both the same it seems. So can’t we get the “Forums” breadcrumb to actually go to my URL instead?
This is not a critical issue.