Forum Replies Created
-
In reply to: hyperlinks / a inside forum content
Hi Robin,
If you put bbpress.css inside your theme/bbpress/css folder it should load that css right?
Can I then add that into there or does it have to be the main style.css?
Thanks so much!
In reply to: Having "Trash" option and not "Spam" for moderatorsHi Robin,
Basically as a “Keymaster” I am able to Trash/Spam. As a moderator I am only able to Spam. I was wondering how I could get the mod to Trash as well. I really don’t care about the Spam part.
In reply to: Having "Trash" option and not "Spam" for moderatorsanyone?
This is only for the main forum index as well. If you enter a forum that has sub forums, all the topics/posts are correct.
Oh. Using the Repair Tool for the Forums does not resolve this issue.
In reply to: Topics and Posts don't change after deleting postsit was permit press core. nm
In reply to: Topics and Posts don't change after deleting postsis it possible the bbpresswp4 fix plugin affects it not being able to be cleared?
In reply to: Topics and Posts don't change after deleting postsis there any other way to fix this besides the repair tool? or if the repair tool isn’t working is there a solution?
In reply to: Topics and Posts don't change after deleting postsI get “Counting the number of topics to which each user has replied… Failed!” when I try to run the repair but this is a fresh install with no importing of any other threads.
In reply to: First Forum does recognize login informationsolved it was an htaccess thing, thnxx
In reply to: First Forum does recognize login informationsubject should be does NOT recognize
In reply to: How to remove (0,0) in sub forum listings?I’ve tried it on a fresh install. I’ve tried it on my site while changing to a default theme and I have same issue.
Weird thing now too is I have a sandbox and a main site and when I do sub forums one has them side by side, the other on top of each other. Same versions of theme and bbpress… why would it do that?
In reply to: How to remove (0,0) in sub forum listings?I have a developer that has been trying the same code on his test site without it removing the reply/topic counts either.
In reply to: How to remove (0,0) in sub forum listings?function remove_counts() { $args['show_topic_count'] = false; $args['show_reply_count'] = false; $args['count_sep'] = ''; return $args; } add_filter('bbp_before_list_forums_parse_args', 'remove_counts' );
I’ve been pasting that since the beginning. It’s at the bottom of my child theme’s function.php.
In reply to: How to remove (0,0) in sub forum listings?I have tried the new code. What I’m saying is that even though the pastes in here look wrong, it’s not. It’s because i’m not using “code” in here that it formats it.
I’ve copy pasted the code you provided, which was what I was using before (I just pasted it without “code”) here.
I’ve literally spent hours trying to fix this solution.
In reply to: How to remove (0,0) in sub forum listings?Yes. But that code is exactly the code I already had in my functions.php.
For some reason when I paste in this thread it changes certain things like ” to “.
In reply to: How to remove (0,0) in sub forum listings?Hrmm I’ve tried both methods and neither end up working for me. I’ve also tried it on my theme and one of the default themes. It all makes sense but it doesn’t seem to work for me.
Really appreciate the help Robin, any other ideas?
In reply to: How to remove (0,0) in sub forum listings?i’ve put it in multiple function.phps and still have an issue.
In reply to: How to remove (0,0) in sub forum listings?I read this: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-3/
and placed the same code into the loop-single-forum.php but it has an error.
In reply to: How to remove (0,0) in sub forum listings?Btw I’m not sure why the paste shows the improper type, in the actual code I paste into the function.php it looks like the correction you gave me.
In reply to: How to remove (0,0) in sub forum listings?Hi Robin,
It still didn’t work for me. In the instructions it says:
Change loop-single-forum.php
Put the following into your functions file
function remove_counts() {
$args[‘show_topic_count’] = false;
$args[‘show_reply_count’] = false;
$args[‘count_sep’] = ”;
return $args;
}
add_filter(‘bbp_before_list_forums_parse_args’, ‘remove_counts’ );What are you suppose to change in the loop-single-forum.php? Changes are made to the child theme function file right when it talks about function.php?
In reply to: How to remove (0,0) in sub forum listings?I paste that into my functions.php and it doesn’t remove the (0,0). I’m wondering if I’m missing a step.
In reply to: How to remove (0,0) in sub forum listings?So if I copy and paste this into my functions.php it should remove the (0,0) right?
function remove_counts() {
$args[‘show_topic_count’] = false;
$args[‘show_reply_count’] = false;
$args[‘count_sep’] = ”;
return $args;
}
add_filter(‘bbp_before_list_forums_parse_args’, ‘remove_counts’ );Am I missing something else to do?
In reply to: How to remove (0,0) in sub forum listings?Nope. I copied all that into my functions and it didn’t work. I’ve googled other solutions which are along the same lines but different code that’s used. I figured it was cause that was outdated and bbPress version is different.
No other solution?
In reply to: How to remove (0,0) in sub forum listings?I want to remove both. I just do not want it listed there.