Watu, WatuPRO and MemberPress – Solution To an Issue

We’ve been very happy to have our plugin recommended by MemberPress. They have a great membership plugin there.

Unfortunately there is currently a problem that when the Watu or WatuPRO shortcode is placed inside their pages, our scripts and CSS are missing and the quizzes don’t work. While we are trying to get in touch with the folks at MemberPress to have this issue resolved together, there is a solution which will do the work:

Go to your plugin editor (or use FTP if you prefer), find MemberPress Courses and open the file:

app/views/classroom/courses_footer.php

Add the following code before the closing </body> tag:

<?php wp_footer(); ?>

That’s all! Save and you’ll have the quizzes working again.


One thought on “Watu, WatuPRO and MemberPress – Solution To an Issue

  1. B

    You should never edit plugin code. Memberpress has an action you can use, mpcs_courses_footer. You can add this to your theme’s functions.php file. If you’re using a purchased or downloaded theme, you’ll need to create a child theme first.

    add_action(‘mpcs_courses_footer’, function() {
    wp_footer();
    });

Leave a Reply

Your email address will not be published. Required fields are marked *