Forum Replies Created
-
In reply to: Created Topic and It's Not ThereIn reply to: Install bbpress on a subdomain?
no particular reason to run them separately unless they get different servers !
Most people run them together.
In reply to: More than one differnt forum per web siteyes, just use
https://wordpress.org/plugins/bbp-private-groups/
which will let you set up exactly that
In reply to: Issue with [bbp-topic-index]The first basketball is given by a div class of ‘page-title’
The second basketball is given by a div class of ‘entry-title’so you could try
#bbpress-forums .entry-title {
display : none !important ;
}in your child theme css
In reply to: Is this a forum width issue?great – glad you’re fixed !
In reply to: No posts are being displayed when inside of a threadok, glad you’re fixed !
In reply to: Issue with [bbp-topic-index]Just trying to have recent forum activity listed in that sidebar.
try the ‘latest activity widget’ in my plugin
https://wordpress.org/plugins/bbp-style-pack/
one other thing – how can we fix the forum header
This is a theme issue – who’s theme are you using?
In reply to: Forums/forumdashboard>appearance>menu’s and just add it as a link
In reply to: Issue with [bbp-topic-index]The [bbp-topic-index] is not designed to run in a sidebar, or indeed in any panel of such a small width.
There are plenty of widgets you can use to put in there.
What are you trying to achieve in the sidebar?
great, putting it in the template is equally fine, BUT make sure you put that template into a child theme, else plugin and theme updates will destroy it.
In reply to: Error opening forumsok, the function that is being called is ‘suffusion_bbpress_content_class’ which tells us that this is a function created by the theme suffusion. bbpress functions start ‘bbp_’.
You have put (intentionally or not) a file into your child them called
‘wp-content/themes/suffusionchild/single-forum.php’
which is an amendment of bbpress’s single-forum.php.
After googling I found this post which seems to describe your issue and the resolution, which is to remove the bbpress files from your child theme.
In reply to: Issue with [bbp-topic-index]url has a ‘under dev’ banner !
In reply to: MAJOR noobie with a lot of questionsLast, I don’t think I understand your last section. There isn’t a way to make all post(ers) anonymous?
sorry I thought you didn’t want that !! viz
I was just told we need to also make it so that the posters are anonymous. I don’t want to have people to post anonymously, I want them to sign up.
my previous comments related to wordpress comments rather forum topics/replies – sorry I was working my way though many questions at the time !
In FORUMS
you can have anonymous posting
Dashboard>settings>forums>forum user settings and tick anonymous posting.
BUT it will only be anonymous if the user ISN’T logged in, if they log in it will post under their name.
Come back if anything not clear – I’ll happily help further !
ok assuming it works it just needs wrapping into a function, and then adding to the action so :
<?php Function andrew55_insert_field () { require_once '/home/site/public_html/amember/library/Am/Lite.php'; if (Am_Lite::getInstance()->haveSubscriptions(2)) { ?> <p>custom text 1</p> <?php } else { if (Am_Lite::getInstance()->isLoggedIn()) { ?> <p>custom text 2</p> <?php } else { ?> <p>custom text 3</p> <?php } } }
which could be shortened to
Function andrew55_insert_field () { require_once '/home/site/public_html/amember/library/Am/Lite.php'; if (Am_Lite::getInstance()->haveSubscriptions(2)) echo '<p>custom text 1</p>' ; elseif (Am_Lite::getInstance()->isLoggedIn() ) echo '<p>custom text 2</p>' ; else echo '<p>custom text 3</p>' ; } add_action (‘bbp_theme_after_reply_author_details’, ‘andrew55_insert_field ’) ;
that might upset the purists who seem to love have php statements all over their code, but makes it more readable – apologies if you’re in the purist camp 🙂
You need to put this code into your functions file, so that it is automatically called when the action is executed
In reply to: Forums/forumDashboard>settings>forums and near the bottom turn off forum prefix
glad you like the plugin – I wrote it, and also
https://wordpress.org/plugins/bbp-profile-information/
which just does bbpress if you don’t have buddypress, and might be the better one to crib from.
if you download it and look at
includes/display.php you’ll see it hooks to an action in bbpress
add_action (‘bbp_theme_after_reply_author_details’, ‘bbp_profile_information’) ;
so you just (!) need to create a function that echos the output of your snippet and use that in the hook.
Not sure of your php knowledge level, so do come back if you need further help
In reply to: bbp Private Group Non-Logged In User RedirectGreat – glad you’re fixed !
In reply to: bbp Private Group Non-Logged In User Redirectyes for a private forum with visibility that is the expected behaviour.
If the forum is private then it is not seen by non-logged in users, so the logic is that as you don’t expect non-logged in users to know that the forum exists, you wouldn’t want them to know that a topic exists, and login would tell them that they url existed, so they get a 404 in all cases.
Set the forum to public, and the logon screen will appear.
In reply to: bbp Private Group Non-Logged In User RedirectCan you post here what you have put into the setting?
In reply to: bbp Private Group Non-Logged In User Redirectcheck that you have put the url in correctly – copy from the setting into your browser and check that it works it needs to be the full url
In reply to: Let editor look like hereno problem, I was posting for others searching later on and coming across this thread.
Have fun !
In reply to: MAJOR noobie with a lot of questionsDonlt worry we all had to start at some stage !!
1.
Now, because I did that, anyone that registers registers for a WordPress account. I’m not sure if that’s correct.
yes that is how bbpress works it uses a worpress account. As long as you set Dashbiard>settings>general default to subscriber, your user won’t be able to do anything in wordpress
2. set the admins to hidden as per docs
Forum visibility:
Public – Anyone can see these forums
Private – Only logged in registered users with a forum role can see these forums
Hidden: Only Moderators/keymasters can see these forumsIf you want more granular access, then use
https://wordpress.org/plugins/bbp-private-groups/
3. no sorry not a ‘diary’ way- wordpress not bbpress so try their forum, but
4.
I am pretty sure I can do it via the forum, I just don’t know how to do it. I know it’s a permissions thing and I can make certain posts hidden.
https://wordpress.org/plugins/bbp-private-groups/
and set a forum per user, but you’ll need to do this manually as part of user set-up, so if only say one as day signing up that would be fine, but if hundreds !!
4.
‘I was just told we need to also make it so that the posters are anonymous’
No idea why, it is entirely up to you how you set you site up
– if you want no-one to comment then set comments off in settings>discussion>default article settings.
– if you want just registered – then also set ‘users must be registerd…’ in other comment settingsCome back if you need further help 🙂
In reply to: Issue with [bbp-topic-index]It is almost certainly a theme issue – post a url
In reply to: Let editor look like hereIn reply to: Login fails for ChromeThat’s a new one on me – glad you worked it out !