Published on November 26th, 2018 by frog65
Hallo,
wie kann ich im bbPress Forum bei den Unterforen das Trennzeichen (“;”) anpassen. z.B. Unterforum1 (0,0) ; Unterforum2 (0,0)
Hab was gelesen von bbp_list_forums im template.php.
Es beginnt schon damit, dass ich dieses template.php in WordPress nicht finde.
Gibt es keine Customizing-Seite wo ich das eingeben/auswählen kann?
Grüße
Armin
Published on November 25th, 2018 by amelieabraham
Hi,
Anyone knows why there’s only “text” that shows and not “visual” when a member wants to publish a post?
Everyone isn’t comfortable with HTML.
Thanks!
Amélie
Published on November 25th, 2018 by amelieabraham
Hi!
I just finished setting up my forum. Now I’m wondering how can my members post videos and photos? I can only see a text option? I run a training forum, thus people need to publish their progress with images/videos.
Thank you!
Amélie
I’m working with Version 2.5.14
Published on November 24th, 2018 by mattybakes01
When I view topics on my S9+ the right side of the topic section is cut off.
Viewing on phones with smaller screens isn’t a problem. Just on a larger mobile screen.
It’s fine on Tablets too.
I have adjusted the screen res on my phone aswell.
I’ve attempted several CSS changes with no luck.
#bbpress-forums .hentry {
margin-left: 0px;
}
and
@media only screen and (max-width: 480px){
#bbpress-forums div.bbp-forum-author,
#bbpress-forums div.bbp-topic-author,
#bbpress-forums div.bbp-reply-author {
position: relative;
}
#bbpress-forums div.bbp-reply-author img.avatar{
position: relative;
display: block;
}
}
Published on November 24th, 2018 by filipfek
Hi 🙂
I do not know if my problem is more concerned with buddypress support or bbpress support, but I wrote here.
My WordPress
bbPress 2.5.14
BuddyPress 3.2.0
I use theme Eduma.
I’m using BuddyPress and created a group with a private forum. The problem is that the group forum has no template. If I check the page, it has all classes. It looks like it can’t read the css bbpress file (it look like that Annex1). I created the forum using bbPress. My forum looks like that Annex 2 and the group forum should look exactly the same. How can I do this? I will be grateful for your help.
Published on November 23rd, 2018 by van24
We’ve been told that our forum may be causing an issue with Google’s thin content algorithm, so I’m looking to find a way to noised some of the pages with little content.
I’ve already managed to noindex all the views, replies, users, and topics with replies (see the code below, if anyone’s interested).
I would also like to noindex any forum topic that has total content of less than X words/characters. Is there any way to do that in functions.php? Thanks in advance!
Here’s what I have so far:
add_action( 'wp_head', 'topic_add_noindex' );
function topic_add_noindex()
{
if (bbp_is_single_user())
{
wp_no_robots();
}
if ( bbp_is_single_topic() && bbp_get_topic_reply_count()==0)
{
wp_no_robots();
}
if (bbp_is_single_view())
{
wp_no_robots();
}
if (bbp_is_single_reply())
{
wp_no_robots();
}
}
Published on November 22nd, 2018 by Ravi
Hello,
I left my forum without update for a longgggg time.
It is now in version Version 1.0-alpha-6
How do I update it to the current version?
Anything that I should take care in addition to the upgrade instructions for the recent versions?
Published on November 22nd, 2018 by bennny91
Hello all, recently upgraded to PHP 7.2 on WPengine and our BBpress Forums has decided to throw a HTTP error 500.
The error message shown in log:
[Wed Nov 21 2018] [php7:error] PHP Fatal error: Uncaught ArgumentCountError: Too few arguments to function blockchain_replace_the_title(), 1 passed and exactly 2 expected in /nas/content/live/ep18/wp-content/themes/blockchain/inc/default-hooks.php:60\nStack trace:\n#0 [internal function]: blockchain_replace_the_title(‘Forums’)\n#1 /nas/content/live/ep18/wp-includes/class-wp-hook.php(286): call_user_func_array(‘blockchain_repl…’, Array)\n#2 /nas/content/live/ep18/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘Forums’, Array)\n#3 /nas/content/live/ep18/wp-content/plugins/bbpress/includes/core/theme-compat.php(519): apply_filters(‘the_title’, ‘Forums’)\n#4 [internal function]: bbp_template_include_theme_compat(‘/nas/content/li…’)\n#5 /nas/content/live/ep18/wp-includes/class-wp-hook.php(286): call_user_func_array(‘bbp_template_in…’, Array)\n#6 /nas/content/live/ep18/wp-includes/plugin.php(203): WP_Hook->apply_filters(‘/nas/content/li…’, Array)\n#7 /nas/content/live/ep18/wp-content/plugins/bbpress/includes/core/sub-actions.php(436): apply_filters(‘bbp_temp in /nas/content/live/ep18/wp-content/themes/blockchain/inc/default-hooks.php on line 60, referer: https://ep18.wpengine.com/
Can anyone help?
Is BBpress compatible with PHP 7.2?
Thanks
Ben
Published on November 22nd, 2018 by pallavi
Hello,
I am using bbpress for forums on my site. But now I am migrating my forums to another site.
I want to export only open topics to new site. Is there any way to get only open topics? Can anyone help me out for this?
Published on November 21st, 2018 by daniellekong
I have a forum under a buddypress group with the permalink structure /groups/group-name/forum/
I’ve created a sub-forum but when I click on it the permalink structure changes to /forums/forum/parent-forum-name/sub-forum-name/
Which means that I’m now taken out of the groups page and in a separate forums page instead.
Is it possible to change it so that all sub-categories and sub-forums stay within the group?
I’m not great with code so I’m hoping there’s a really simple solution!