Rashed Hossain
Forum Replies Created
-
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Credential Id editDear @robuph
No, it’s not possible to edit the serial number of the credential ID manually. Additionally, there isn’t currently an automated way to assign serial numbers to certificates.
Thank you.
Dear @kunal_28parikh
We are very sorry for the issue. The social login feature is part of the Tutor LMS Pro. However, this forum is only for free products. Don’t hesitate to get in touch with themeum support with your order number regarding your issue.
Thank you.
Hello @anuchap
Actually, there are no specific tutorials or documents available for that particular task. Typically, such tasks are handled by developers who possess the necessary skills and knowledge to accomplish them without the need for specific documentation.
Thank you.
Hello @eemarianitoo
Thank you for reaching out to us regarding the issue you’re experiencing with Oxygen and Tutor LMS integration. It seems like this may be a specific issue with your website setup. We’ll certainly look into it further to identify and resolve the problem as quickly as possible. In the meantime, if you have any additional details or if there’s anything specific you’d like us to investigate, please feel free to provide them. We’re here to help!
Thank you.
Hello @babastutz
The E-mail and Membership are part of the Tutor LMS Pro, however this forum is only for free products. Please contact themeum support with your order number regarding your issue.
Thank you.
Hello @t3ch4u
The certificate is part of Tutor LMS Pro, but this forum is only for free products. Please contact themeum support with your order number regarding your issue.
Thank you.
Hello @sethstephens1
To achieve the desired customization, you will need to override and modify the Tutor LMS templates. You can refer to our documentation for detailed instructions on how to override the Tutor LMS templates. This process requires some knowledge of theme and plugin customization.
https://docs.themeum.com/tutor-lms/developers/override-templates/
Thank you.
Dear @boka003
It seems like you’re attempting to create a plugin for WordPress that generates a report of employees who haven’t taken or passed a quiz using the Tutor plugin. Your approach is on the right track, but there are a few issues that need to be addressed in your code:
1. Quiz Results Meta Key: You’re checking for the existence of the ‘quiz_results’ user meta key to determine if a user has taken the quiz. However, Tutor might not necessarily use this key for storing quiz results.
2. Logic for Checking Quiz Results: You need to modify the logic to accurately determine if a user has taken or passed the quiz. This might involve querying Tutor’s database tables or using its provided functions to retrieve quiz results.
3. Displaying Quiz Results: Once you have correctly identified users who haven’t taken or passed the quiz, you can display this information in the admin menu page.
Here’s a revised version of your plugin code with comments indicating where changes are needed:
// Add a custom admin menu item function employee_test_report_menu() { add_menu_page( 'Employee Test Report', 'Employee Test Report', 'manage_options', 'employee-test-report', 'display_employee_test_report' ); } add_action('admin_menu', 'employee_test_report_menu'); // Function to display the employee test report function display_employee_test_report() { global $wpdb; // Retrieve users who have taken or passed the quiz using Tutor's functions or database queries // Modify this part according to Tutor's API or database structure $users_with_quiz_results = array(); // Populate this array with users who have taken or passed the quiz // Get all WordPress users $users = get_users(); // Initialize an array to store users who haven't taken or passed the quiz $users_not_taken_or_passed_quiz = array(); // Loop through each user foreach ($users as $user) { // Check if the user is not in the $users_with_quiz_results array if (!in_array($user, $users_with_quiz_results)) { // If the user hasn't taken or passed the quiz, add them to the array $users_not_taken_or_passed_quiz[] = $user; } } // Display the results echo '<div class="wrap">'; echo '<h1>Employees Who Haven\'t Taken or Passed the Test</h1>'; if (!empty($users_not_taken_or_passed_quiz)) { echo '<table class="widefat">'; echo '<thead><tr><th>User ID</th><th>Username</th><th>Email</th></tr></thead>'; echo '<tbody>'; foreach ($users_not_taken_or_passed_quiz as $user) { echo '<tr>'; echo '<td>' . $user->ID . '</td>'; echo '<td>' . $user->user_login . '</td>'; echo '<td>' . $user->user_email . '</td>'; echo '</tr>'; } echo '</tbody>'; echo '</table>'; } else { echo '<p>No employees found who haven\'t taken or passed the test.</p>'; } echo '</div>'; }Remember to replace the placeholder logic with the actual logic to retrieve quiz results from Tutor plugin. Additionally, ensure that you’re using the correct functions or database queries provided by Tutor to fetch this information.
Dear @p3to
Thank you for reaching out. In Tutor LMS, administrators currently do not have the capability to download certificates for other students or access the list of generated certificates for all users. This functionality is not available as Tutor LMS is designed as a self-learning online platform where each student manages their own certificates.
Dear @p3to
Thank you for your feedback and for implementing the suggested changes. I’ve noted your feature requests regarding adding functionality within the filter settings and implementing settings to show subcategories under their main category. I’ll pass these suggestions along to our development team for consideration in future updates. If you have any more ideas or questions, feel free to share them with us.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Redirect registration pageDear @satoru235
I am very sorry to inform you that you can’t edit the course list page with the Elementor.
Thank you.
Dear @sudeposutemizligi
I assume that there is a high possibility of conflict among other plugins. Can you kindly follow the steps mentioned below:
1. Disable all the other third-party plugins and check whether that
solves the issue
2. If that solves the issue, please activate the plugins one by one to
rule out the conflicting plugin
3. If that doesn’t work, please check it by activating the parent theme
4. If the issue still persists, please activate a WordPress default
theme like Twenty Twenty and checkPlease also make sure that your platform and theme are up to date.
Thank you.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Redirect to wp-adminDear @haidardr9
Please enable the Tutor Login from the Tutor LMS advanced settings, the issue will be solved.
Thank you.
Dear @ssacco
You have to customize this /tutor/templates/single/lesson/lesson_sidebar.php file.
Thank you.
Dear @richietechz
We apologize for the issue you’re experiencing. It appears to be a website-specific problem and to properly diagnose and resolve it, we would need to thoroughly inspect your website. Please reach out to us at https://www.themeum.com/support/ for assistance.
Thank you.