Forum Replies Created
-
In reply to: bbPress + Elementor Header
Here’s what the child theme looks like now:
<?php
function hello_elementor_child_enqueue_scripts() {
wp_enqueue_style(
‘hello-elementor-child’,
get_stylesheet_directory_uri() . ‘/style.css’,
[
‘hello-elementor’
],
‘1.0.0’
);
}
add_action( ‘wp_enqueue_scripts’, ‘hello_elementor_child_enqueue_scripts’ );function ele_disable_page_title( $return ) {
return false;
}
add_filter( ‘hello_elementor_page_title’, ‘ele_disable_page_title’ );=========
I tried adding your suggested content at the end of the file, but received an error message that stated the functions file had reverted due to an error in line 45. Line 45 was simply a close-bracket “}”.
===================In reply to: bbPress + Elementor HeaderAnd whereabouts in the functions file do we insert it?
In reply to: Not sure what to useMiguel,
I just looked at my install of bbpress, and on none of the Forums I’ve set up are there options to make them Public, Private or Hidden. That’s one of the points that has me stuck.In reply to: Not sure what to useMiguel,
Thanks. I’ll give your suggestions a run in the next couple of days. I have to decide upon bbpress or buddypress per your criteria.
I didn’t see this info on the bbpress and buddypress sites. Is it in the codex or where?
Thanks again.In reply to: Private and hidden forums (solution)Not all forums should be open and transparent. What if you want a forum to discuss something like a medical condition and need to provide personal data. That personal data is protected by HIIPA. Or, if you are wanting a communication forum for a patent-pending product? Or, an internal intranet use?
In reply to: Private forums should have a login formPagal,
What theme?
What plugin?