in_jail_out_soon
Forum Replies Created
-
I have the same problem
update: trying to remove the order from trash to completely delete does create even more problems (this does take away the test orders in statement, but it does not fix the earnings for that order (it does not roll back the refund – is there a refund option?) but it does create problems in the statement tab for the month that the “test orders” were placed, PHP errors stating it could not find the purchase order.
It does work normally for months these orders were not completely deleted. (trashed is fine, only on orders that were removed from trashed to completely deleted)
Is there a way to revert / correct the earnings for the instructors should a student cancel / refund / or test orders were made?
Hi @grindhorse
You could try to unset the quiz attempts from the dashboard by adding the following to your functions.php
add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard'); function remove_some_links_dashboard($links){ unset($links['Quiz Attempts']); return $links; }
Something like this should hide the dashboard quiz attempts, as for the platform generating a gradebook with results, you can try do hide the gradebook on the landing page by using CSS, adding a ‘display: none;’ property should do the trick
- This reply was modified 4 years, 5 months ago by in_jail_out_soon.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] disable html uploadupdate from developer: The plugin doesn’t integrate into the WordPress Media Library, so nothing gets stored there and you can’t access anything on OneDrive via the Media Library. The plugin is completely separate from that and it will directly send the files to OneDrive and can display the content stored on OneDrive.
Is this tutorlms can be modified to should instructors use the option to upload files, or would it just be easier to disable HTML 5 uploads (your solution) and use the plugin as a work around on a different page?
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] disable html uploadHi @probillals
Thank you for the solution – just another question regarding this, I’m thinking of buying a plugin that enables users to upload their videos / content directly to one-drive instead of media library – as tutorlms was designed to do when uploading .mp4 files – The plugin basically overrides / points / modifies media library to one drive, if the instructor uploads files via HTML5 option using tutorlms – will the files still try to find media library or accept that the destination has been changed that takes uploads to one-drive instead? – (Still trying to find out if files are first uploaded to media library then automatically moved to one drive, once moved it will be deleted on media library)
If this is going to give a problem I will have to build a separate uploading page and use the solution you provided above.
Hi @badsha_eee
I checked the console, nothing strange going on, I still get the flash (using skillate theme) could it be something to do with some JS files begin minified? using autoptomise plugin – this was disabled however, did not make a difference. It’s the only plugin I use that compresses the css / js.
The problem is not site breaking, its just confusing when the quiz gets submitted it shows the dashboard my quiz attempts results, without leaving the lesson page, and then returns to the quiz – no more then 3 seconds for this to start / finish.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Custom dashboardHi @devhendrix
yes its possible, put the following code in your functions.php
/* Removing some of Tabs in dashboard */ add_filter('tutor_dashboard/nav_items', 'remove_some_links_dashboard'); function remove_some_links_dashboard($links){ unset($links['whishlist']); unset($links['earnings']); return $links; }
You can read about this in the documentation -> https://docs.themeum.com/tutor-lms/developers/editing-dashboard-links/
- This reply was modified 4 years, 5 months ago by in_jail_out_soon.
- This reply was modified 4 years, 5 months ago by in_jail_out_soon.
I have tested this with {student_username} alone, it seems {student_username} is calling var {instructor_username}
PHP 7.4
Newest Tutor updateHi @anim07,
I’m looking for the same thing, I have a custom login page, When you click register on the homepage the link takes you to the correct custom made login page, but if you go the course and click add to cart, it directs you to the login page supplied by tutorlms, where is the file located where I can override to where it should direct?
Kind Regards,
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Possible video bug?Update: seems to be plyr, the problem goes away when forcing video through youtube / vimeo or embedding the file
EDIT: I did check the Course author, Course review, display instructor info settings in Tutor LMS > Settings > Course tab. They were all set correctly, the only changes those made was in the course information page, but for some reason not in the footer of the course.
Hi Nayeem,
Hope you are doing well,
I have added the following code to tutor/loop/footer.php – The author and reviews display correctly as well as update correctly.
<a href="<?php echo esc_url($profile_url); ?>" class="tutor-course-author"><br><?php the_author();?></a> <?php $course_rating = tutor_utils()->get_course_rating();?> <div class="tutor-loop-rating-wrap <?php echo !$course_rating->rating_count ? 'no-rating' : ''; ?>"> <?php tutor_utils()->star_rating_generator($course_rating->rating_avg);?> <span class="tutor-rating-count"> <?php echo $course_rating->rating_avg; echo '<i>(' . $course_rating->rating_count . ')</i>'; ?> </span> </div>
everything seems to work normally.
Do you foresee any problems?
Hi @anim07,
Hope you are doing well,
Here are my current versions.
Wordpress: 5.4.1
Tutorlms: 1.6.1
PHP: 7.3 (Cpanel hasn’t upgraded to 7.4 yet – as far as i know?)It’s not a big issue, we can work around it should 7.4 be the issue.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Paid Course URL not SecureHi Kalinga911,
I have tried duplicating your problem, it works correctly on my side. I have tried copying the url from a free course, as well as paid course (as after your message I started to worry also)
Everything works from my side, if student is not registered on site, and gains url -> reverts to register / login page.
if students sign on and then use the url -> you are not registered for this course, view this course.Have you checked your woocommerce settings? try disabling (if its enabled) guest checkout. / check under tutorlms -> settings -> woocommerce disable add to cart feature for guests.
also try changing the woocommerce from virtual product to physical product, see if that makes a difference.if none of this works, disable your plugins, and test, could be plugin interference.
in the course filter element inspector:
<div class=”tutor-star-rating-group”> is present in the course filter – But not present on homepage listing.
The same with “tutor-course-author”.
the author and reviews displays correctly in the course filter
- This reply was modified 4 years, 6 months ago by in_jail_out_soon.
- This reply was modified 4 years, 6 months ago by in_jail_out_soon.