Cursos MemberPress tendrá los comentarios desactivados en todos los cursos y lecciones por defecto.
Este documento le mostrará cómo permitir comentarios en cursos y lecciones individuales y para todas sus lecciones en bloque.
Permitir comentarios sobre lecciones individuales
Los comentarios no se muestran por defecto en los cursos y lecciones, pero puede mostrarlos siguiendo estos pasos:
- Vaya a la página MemberPress > Configuración, haga clic en el botón Cursos tab, check the “Show Comments Settings on Course and Lesson Pages” option and save it
- Once it's done each course and lesson will have a Discussion section with an “Allow comments” option
- To display comments on a specific course or lesson you will need to check the “Allow comments” checkbox and save the course/lesson. Here is the screenshot of what the comment form looks like:
Permitir comentarios en todas las lecciones
To display comments on all lessons without the need to check the “Allow Comments” option manually for each lesson you could put the following code snippet to the WPCode plugin (please check this article for details: Cómo añadir fragmentos de código personalizados en WPCode), o si estás usando un tema hijo, entonces el archivo functions.php debería funcionar también.
add_filter('comments_open', function($open, $post_id) { $post = get_post( $post_id ); if('mpcs-lesson' == $post->post_type) $open = true; return $open; }, 10, 2);