Home › Forums › Legacy Support › Support queries › Other issues › Course results, in-course assignments
Tagged: assignment, in-course assignments, results
- This topic has 13 replies, 3 voices, and was last updated 4 years, 8 months ago by logan.
-
AuthorPosts
-
February 11, 2020 at 9:46 pm #242241No OneSpectatorHello, Thanks for helping,
- We have a multilingual website, and I need to make Course Results page globally like user's profile, as of now, if the user changes his language and tries to open course results page, it'll open the course results for only the courses on the current language, We need the course results page to include course results for all languages.
- When using "In course Assignment", the Assignment question opens before clicking on the button "Start Assignment", We need to hide the question until clicking the button or
- If it's possible to Auto Start Assignment in "in-course Assignment" when clicking "Next Assignment" in course status page.
- We need to make the Assignment submissions with both "Text area" and "Upload a file" So, the user can type the answer or upload an attachment.
February 12, 2020 at 4:36 pm #242362loganMemberHello, i am afraid it is not available in wplms yet.- this will be generated as per the course content language.
this should not be happening. please share a video of this issue. we will try to replicate the issue at our end.
share course url, admin credentials to test this. 3- no this is not possible fr now. 4- not possible for now.
February 13, 2020 at 6:55 am #242406No OneSpectatorThis reply has been marked as private.February 13, 2020 at 1:13 pm #242461No OneSpectatorThis reply has been marked as private.February 14, 2020 at 12:03 pm #242599loganMemberThis reply has been marked as private.February 14, 2020 at 1:56 pm #242603No OneSpectatorThis reply has been marked as private.February 17, 2020 at 1:31 pm #242846loganMemberHello, this is fully compatible with wplms if you are using wpml plugin. if you are using loco translate then you cant use the above. please have a look on this tip: https://wplms.io/support/knowledge-base/wplms-with-wpml-multilingual-plugin/February 17, 2020 at 4:55 pm #242872No OneSpectatorI waited for a long time, I think I need to highlight all missed points,I hope You can take not available requests in the first post as a payed customization,
When using "In course Assignment", the Assignment question opens before clicking on the button "Start Assignment", We need to hide the question until clicking the button
Also replicated a new issue, Using in-course assignment next to an in-course assignment, When assignment evaluated, the button "Next assignment" is not appearing, the user need to navigate to next assignment from the side menu.
February 18, 2020 at 12:31 pm #242997Anshuman SahuKeymaster1 . Well we are using Wp_Query which is modified by the wpml plugin later to show posts of current language . same goes for the all courses page and all. 2 . yes we can do this with : please try adding this given code in your wplms-customizer.php file in wplms customizer plugin : add_filter('the_content',function($content){ global $post; if($post->post_type == 'wplms-assignment'){ if(!is_user_logged_in()){ return ''; } $user_id = get_current_user_id(); if(current_user_can('manage_options') || $user_id == $post->post_author){ return $content; } $meta = get_post_meta($post->ID,$user_id,true); if(is_numeric($meta)){ return $content; }else{ return ''; } $content = ''; } return $content; }); 3 . Please make sure that the assignment is connected to the course in the assignment settings itself : http://prntscr.com/r41if7February 20, 2020 at 7:33 am #243254No OneSpectatorThis reply has been marked as private.February 20, 2020 at 8:14 am #243271No OneSpectatorThis reply has been marked as private.February 21, 2020 at 1:17 pm #243458Anshuman SahuKeymaster1 . Well to customize this you can contact wpml plugin support as they know their code better than us and also know which filter they are using to filter our current language posts and can remove that filter in this particular case . Sorry we cannot take it . 2 . the code works fine for me .Are you checking it from instructor account or student account , it will work only for student . 3 . yes this is found to be an issue with incourse assignments . adding to issue log .will be fixed in next update . track : https://trello.com/c/6eDOSnh4February 22, 2020 at 3:10 pm #243528No OneSpectatorOkay, Thanks AlexFebruary 24, 2020 at 6:43 am #243600loganMemberbest regards. -
AuthorPosts
- The topic ‘Course results, in-course assignments’ is closed to new replies.