Tagged: x
-
AuthorPosts
-
January 20, 2017 at 3:18 pm #1338929
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’ );January 20, 2017 at 8:03 pm #1339247Hi 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.
January 25, 2017 at 1:03 pm #1345102Hello,
The custom CSS isn’t working. I’ll contact the plugin author. Thank you.January 25, 2017 at 1:53 pm #1345165You’re welcome.
-
AuthorPosts