Hi. Is the testimonials plugin/app that is currently in the WPLMS setup the default? I don't see it listed on the plugins page. I am wondering if it is possible to replace it with a more advanced testimonials plugin, such as https://wordpress.org/plugins/testimonial-rotator/ which includes the star ratings feature.
Thanks.
There is no special plugin for the testimonials in wplms.It is inbuilt in the theme .
YOu can use another testimonial plugin if you want to .
How can I turnoff WPLMS Testimonials so it does not appear at the backend
Please try adding the given code in your wplms-customier.php fileat the end before "?>" in wplms customizer plugin :
function custom_unregister_theme_post_types() {
global $wp_post_types;
foreach( array( 'testimonials' ) as $post_type ) {
if ( isset( $wp_post_types[ $post_type ] ) ) {
unset( $wp_post_types[ $post_type ] );
}
}
}
add_action( 'init', 'custom_unregister_theme_post_types', 20 );