generate Report For Specific Course With details for student

Home Forums Legacy Support Support queries Other issues generate Report For Specific Course With details for student

Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • #195064
    kawkabsowan
    Participant
    generate Report For Specific Course With details for student such name and phone and course name?
    #195269
    Anshuman Sahu
    Keymaster
    Well we have course stats available in course admin that you can make use of : https://www.youtube.com/watch?v=RLYDlSlui8A
    #196138
    kawkabsowan
    Participant
    the admin area not shown for me,   and i need some information from registration users such mobile?
    #196251
    Mk
    Moderator
    This reply has been marked as private.
    #196255
    Mk
    Moderator
    If you want to add some extra field in registration form You can add from here:  
    #196503
    kawkabsowan
    Participant
    HI, I KNOW How to the extra field for registration and also have filed name "phone" but i need this field when i goes to stats and generate new stat https://prnt.sc/mkac44 its very important for me? to add here. please
    #196521
    Mk
    Moderator
    #196617
    Mk
    Moderator
    Go to wp -admin -> plugins -> wplms-customizer plugin -> wplms-customizer.php add this code below : add_filter('wplms_course_stats_list',function ($list){ $list['user_field']= 'Location'; return $list; }); add_action('wplms_course_stats_process',function (&$csv_title, &$csv,&$i,&$course_id,&$user_id,&$field){ if($field != 'user_field') // Ensures the field was checked. return; $title=__('Location','vibe'); if(!in_array($title,$csv_title)) $csv_title[$i]=$title; $ifield = 'Location'; if(bp_is_active('xprofile')) $field_val= bp_get_profile_field_data( 'field='.$ifield.'&user_id=' .$user_id ); if(isset($field_val) && $field_val) $csv[$i][]= $field_val; else $csv[$i][]= 'N.A'; },10,6);   Note : Change Location with exact field name that you want to add.
    #196637
    kawkabsowan
    Participant
    when i export csv i have problem with arabic encoding? how i can export stats in arabic https://prnt.sc/mkm7vg
    #196786
    Mk
    Moderator
    Please share some more details like course and fields you selected for stats.
    #196815
    kawkabsowan
    Participant
    this for all stat and course , this apear before the post the issue about filed. this happen when download stat and exported in csv
    #196865
    Mk
    Moderator
    Please share course details (course link). Its time taking to search in all courses. I tried but some of your course has not any data, so download status was not workng. Please share a course, in which you are facing this issue.
    #196967
    kawkabsowan
    Participant
    hi, go to this course and try generate stat for all student https://aje.vyh.mybluehost.me/iftc/course/starting-a-startup/admin/stats/ https://prnt.sc/mlgzol  
    #197116
    Anshuman Sahu
    Keymaster
    Well the date is fetched directly from database and is written to csv without modifying it . The issue is with the software you are using to read the csv file . When I open the same file in google spreadsheets is shows correct data . refer : http://screencast-o-matic.com/watch/cqnDjY3Rp9
    #197138
    kawkabsowan
    Participant
    this is not goes to be comfortable with us , i open is in excel 2010 any possible to fix this to exported in PDF, with correct encoding. and if you show me the sourse file for the code that make satas thanks
Viewing 15 posts - 1 through 15 (of 16 total)
  • The topic ‘generate Report For Specific Course With details for student’ is closed to new replies.