RichardWantsToKnow (@richardwantstoknow)

Forum Replies Created

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

  • RichardWantsToKnow
    Participant

    @richardwantstoknow

    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

    @richardwantstoknow

    And whereabouts in the functions file do we insert it?

    In reply to: Not sure what to use

    RichardWantsToKnow
    Participant

    @richardwantstoknow

    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

    @richardwantstoknow

    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

    @richardwantstoknow

    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

    @richardwantstoknow

    Pagal,
    What theme?
    What plugin?

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