Search Results for '"wordpress"'
-
Search Results
-
Hello,
I created a bbpress forum on this site that is just available for approved members.
When I click on user profile links, I obtain the following error:
Sorry, but the page you were trying to view does not exist.
It looks like this was the result of either a mistyped address or an out-of-date link.So, I would like to know how I can create the topics started page and others page displayed on user profile page. Is there any shortcode to do that or any other solutions?
Thanks in advance for your help!
I am keymaster on the website but I dont have access to source code of the site. I am using WordPress 6.2.2, bbpress Version 2.6.9.
Topic: [phpBB Debug] PHP Warning
Bonjour,
Je n’ai pas trouvé l’objet de mon problème sur le forum et j’espère ne pas faire de doublon. Dans le cas contraire veuillez m’excuser.Je débute en tant que modératrice sur WordPress et j’ai du mettre à jour le php de mon site (hébergé sur IONOS et passé de 5.6 à 8.1). Tout fonctionne bien sur l’interface WordPress et sur le site (http://alombredugrandarbre.com/) mais un message d’erreur m’empêche d’accéder à la page du forum (http://alombredugrandarbre.com/forum/).
J’ai essayé toutes les étapes de résolution de problème suggérées au début de ce sujet et rien n’a fonctionné. Auriez-vous une idée pour m’aider s’il vous plait ?
Cordialement,Hi,
WordPress 6.2.2 running Twenty Twenty-Three theme, BBPress 2.6.9.
Moved the only hidden (pending) topic from a public forum to a private forum, and published it. Topic, and moved replies all look fine in the private forum.
The public forum from whence it was moved still has this:This forum has NN topics (+1 hidden), NNN replies …
As expected, clicking the
+1 hidden
doesn’t change the number of topics displayed. Repaired the forum, cleared site cache, no change to the+1 hidden
.
If a detail in the move topic process was missed, please advise.
Thanks.Topic: Forums Index
Why does my forum index look like this instead of the neat page I am accustomed to?
Hello, i am using this code Part to show latest Topics in certain Forums. It is giving the correct Topic ids but wont show them except of original Language even if i opened it in a different language first.
<section class=”topics”>
<div id=”bbpress-forums” class=”bbpress-wrapper”>
<h3><?php echo __(‘Recent Topics’, ‘WordPress’); ?></h3>
<?php
$topic_parents = array();
foreach ($match_parent_ids as $match_parent_id) {
$match_ids = get_children(array(
‘post_parent’ => $match_parent_id,
‘post_type’ => ‘forum’,
‘fields’ => ‘ids’,
));foreach ($match_ids as $match_id) {
$topic_ids = get_children(array(
‘post_parent’ => $match_id,
‘post_type’ => ‘topic’,
‘fields’ =>’ids’,
));foreach ($topic_ids as $topic_id) {
echo $topic_id;
}$topic_parents = array_merge($topic_parents, $topic_ids);
}
}
$args3 = array(
‘post__in’ => $topic_parents,
‘post_type’ => ‘topic’,
‘post_status’ => bbp_get_public_status_id(),
‘posts_per_page’ => 10,
‘orderby’ => ‘freshness’,
‘order’ => ‘DESC’,
);if (bbp_has_topics($args3)) :
bbp_get_template_part(‘loop’, ‘topics’);
else :
bbp_get_template_part( ‘feedback’, ‘no-topics’ );
endif;?>
</div>
</section>
Thanks for helping
Hello everyone,
Loving BBPress. I was wondering how I can change the name of the page/header of the forums from “Forums” to the title of my choosing?
I run a RPG forum, and want to keep it immersive. 🙂
I could not find anything on the settings, so it makes me wonder if some tinkering is needed somewhere else.
Thank you in advance, and bravo for such a wonderful addition to WordPress.
Topic: Trouble leaving buddyboss
I am working on getting the site off buddyboss. I think there is something wrong with the forums’ hierarchy. All the group forums are there, but the forums page does not show all the forums. I am working on a staging site at https://wordpress-631920-3100285.cloudwaysapps.com/forums/forum/filmmakers/, and I am trying to track down the solution so that all my forums show up at /forums and not individually or only with groups.
I am trying to make notifications work when using the BNFWP (Better Notifications For WP) plugin. Issue is, two notifications are sent out, one from bbPress and one from BNFWP. BNFWP support have said, “is there a hook you can use to disable their (bbPress) notification (without disabling the entire function within WordPress)”. Any ideas?