Please leave a screenshot of the changes you've made.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Your WordPress theme footer php file (for this custom post type) must contain<?php wp_footer(); ?>function to allow all plugins load JS files and scripts.
Please check and make sure it exists.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Could you please send the admin login details to info[at]gvectors.com email address?
I'll ask the developers to check the issue for you.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Please leave the email subject here to allow us easily find it.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Ok we've found the email. We'll check and back to you asap.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
We've found the reason for the issue. One of the active plugins or a theme blocks the comments_open() property.
We've added the following hook code in the active theme functions.php file:
add_filter('comments_open', function ($open, $post_id) {
if (get_post_type($post_id) === 'lesson') {
$open = true;
}
return $open;
}, 999, 2);
It solves the issue.
You can either keep the code or try to find the problem maker by disabling the theme/plugins one by one.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
4. To add comments on the preview of lessons on your child theme go to /tutor/single-preview-lesson.php and to add only in private lessons go to /tutor/single/lesson/content.php
and after <?php tutor_next_previous_pagination(); ?> add:
Please navigate to Dashboard > wpDiscuz > Forms admin page, edit the form, and make sure the "Display comment form for post types" option is enabled for the post types.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.