Forum Replies Created
-
In reply to: Use WordPress Page instead of Forum Root
can you give us a shortcode you are using and a link to the resultant page?
In reply to: MAJOR noobie with a lot of questionsbbpress hooks to wordpress registration, so any wordpress recapcha should work, you just load the relevant plugin and follow instructions
In reply to: Issue with [bbp-topic-index]ok, as long a that doesn’t break the site it elsewhere you have a solution !
In reply to: Created Topic and It's Not ThereNo problem – glad you’re fixed !
In reply to: MAJOR noobie with a lot of questionsuse a wordpress re-captcha programme to stop the automatic, so that only real people come through
eg
https://wordpress.org/plugins/wp-recaptcha/
there are others and I haven’t tried this one (or any) – just google !
In reply to: Use WordPress Page instead of Forum Rootgiven the age of this thread, I don’t plan rereading it all to understand ‘It wokrs for me also’ 🙂
can you come back with a summary of issue please
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?