RichardWantsToKnow (@richardwantstoknow)

Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • @richardwantstoknow

    Participant

    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 “}”.
    ===================

    @richardwantstoknow

    Participant

    And whereabouts in the functions file do we insert it?

    In reply to: Not sure what to use

    @richardwantstoknow

    Participant

    Miguel,
    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 use

    @richardwantstoknow

    Participant

    Miguel,
    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.

    @richardwantstoknow

    Participant

    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?

    @richardwantstoknow

    Participant

    Pagal,
    What theme?
    What plugin?

Viewing 6 replies - 1 through 6 (of 6 total)