Hi we made some progress to certificate the only thing left is that the name of student is not aligning to the right .
https://oukaap.com/wp-content/uploads/2021/04/5057_117.pdf?1619100498
We are checking this on local setup what we can do .
Hello Alex,
I really need the network media plugin Could you please tell me what are the php error to ask support to this plugin author?
I went to check the error again but could not as faced this error : https://prnt.sc/11z74zm
all the course status requests are giving 406 error , seems like there is some kind of security enabled on server .
You can find it in the error log .
Just enable the plugin and try to finish a course with certificate , you can see the php error at the very last in your error log file .
Alex,
I enable the plugin and try to finish the oukaap demo course. All is ok. It shows review form, certificate, badge and final message.
But others course doesn't show the review form, only the badge, certificate and final message.
What do you think or advise to do with the certificate issue for now https://prnt.sc/120p8ip?
For the certificate issue , I have noted down the issue is coming with right align is not working , very strangely its working when sample pdf certificate is generated not working when actual certificate is generated .
For the other courses which does not shows review form please check if comments are enabled by editing the course in wp-admin -> all courses .
Alex,
So, what do you to fix this issue about the certificate?
I checked the review case and you are right. Comment was disable.
Question:
Where to enable this option by default? Because when you create a course from frontend I don't think there is a way to disable or enable comment!
1 . We are checking this .
2 .for review please add this code in your wplms-customizer.php file in wplms customizer plugin : this will enable comments by default whenever the course is updated
add_action('wplms_front_end_field_saved',function($id){
$my_post = array(
'ID' => $id,
'comment_status' => 'open'
);
// Update the post into the database
wp_update_post( $my_post );
});