wpcues
Forum Replies Created
-
can you please give me more information about the issue pertaining to submission of quiz? Does clicking submit button not work?
I am asking this because in my testing environment, I am not facing this problem.
Ok, I will check today all other functionalities.
problems and problems galore..looking into it 😀
Forum: Plugins
In reply to: [WpCues Basic Quiz] ChartDo you still have this problem? If everything is working fine, we can close this thread.
Are you still having the problem after this update?
Please make the following change line number 276 in wpcue_basic_quiz.php file in post-types folder :
Existing Code :
wp_register_script(‘mathjax’,’//cdn.mathjax.org/mathjax/latest/MathJax.js’);Modified Code :
wp_register_script(‘mathjax’,’//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML’);I have updated the code so that new installation does not have this problem. Thanks for notifying me about this bug asap.
Yes , I am checking this on a priority basis.
I have made the changes but it will take effect when you update for next version as you had already updated before I made that change.
Plase make this change for time being at line 302 in index.php:
existing code : $instanceid=$_GET[‘instance’];
modified code : $instanceid=(array)$_GET[‘instance’];
Forum: Plugins
In reply to: [WpCues Basic Quiz] help me, button submit not workwhich version you are using right now? Please specify your problem in detail so that we can help you.
The suggestion made by you regarding statistics page is a feature of premium plugin.
there was some error in that post, ignore that.
Make following change in file wpcue_basic_quiz.php in folder post-types at line number 1449:
Existing Code :
wp_mail($wpprocuesetting[‘basic’][‘adminemail’],$adminemailsubj,$adminemail);Modified Code ;
wp_mail(get_the_author_meta(‘user_email’,$postauthor),$adminemailsubj,$adminemail);have you made the change as suggested by me?
Right now you can make following change in file wpcue_basic_quiz.php in folder post-types at line number 1449:
Existing Code :
wp_mail(get_the_author_meta(‘user_email’,$postauthor),$adminemailsubj,$adminemail);Modified Code ;
wp_mail($postauthor,$adminemailsubj,$adminemail);Replace existing code with the modified code that I have mentioned above.
I will make this change in next version.Presently you need to add administrator email id on setting page for this to work which is wrong as the author should receive mail. I will update the related code.
was this problem with mail there from the beginning or it came after the current update?