Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1338929

    mizschmitty
    Participant

    Hello,
    Issue #1:
    I have been reading support threads for hours. I’m using a plugin called LifterLMS for online training and cannot suppress the blog post author and date. My stack is Renew and I’m using a child theme. Here is an example page: http://www.koworksllc.com/lesson/01-initial-assessment/

    Based on support threads I’ve tried the options below in the customizer and the child theme’s style sheet:
    .blog .x-header-landmark {
    display: none !important;

    p.p-meta {
    display: none;
    }

    Issue #2:
    Some course info/navigation is showing up in one of the footer widgets. The plugin came with instructions of what to do if their sidebars didn’t display properly and I added the following code to the child theme’s function.php per their instructions:

    /**
    * Display LifterLMS Course and Lesson sidebars
    * on courses and lessons in place of the sidebar returned by
    * this function
    * @param string $id default sidebar id (an empty string)
    * @return string
    */
    function my_llms_sidebar_function( $id ) {
    $my_sidebar_id = ‘sidebar-main’; // replace this with your theme’s sidebar ID
    return $my_sidebar_id;
    }
    add_filter( ‘llms_get_theme_default_sidebar’, ‘my_llms_sidebar_function’ );

    #1339247

    Friech
    Moderator

    Hi There,

    Thanks for writing in! #1 You already have this custom CSS, that hides your meta data (author / date).

    article.course p.p-meta, article.llms_membership p.p-meta, article.llms_membership div.entry-featured {
      display:none;	
    }

    Please clarify.

    #2 It sounds like you might be having an issue with a third party plugin or script. Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

    Thank you for your understanding.

    #1345102

    mizschmitty
    Participant

    Hello,
    The custom CSS isn’t working. I’ll contact the plugin author. Thank you.

    #1345165

    Jade
    Moderator

    You’re welcome.