• Resolved WP_87

    (@word_press_87)


    Hello there,
    this plugin is very nice, but it’s not working anymore (PHP7 etc.).
    I am willing to pay for an update to make it fit with php7xx and wordpress.

    Is there any chances for updating this plugin?

    Thank you ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • change quiz.php line 56, 57, 60, 61

    line 60 $quiz['q'] = $options['def_q'];
    line 61 $quiz['a'] = $options['def_a'];

    change;

    
    						$quiz = array(
    		'q' => $options['def_q'],
    		'a' => $options['def_a'],
    		);
    						$quiz = array(
    		'q' => $options['def_q'],
    		'a' => $options['def_a'],
    		);

    ———————————————————–

    line 56 $quiz['q'] = '';
    line 57 $quiz['a'] = '';

    change;

    
    									$quiz = array(
    		'q' => $options['q'],
    		'a' => $options['a'],
    		);
    									$quiz = array(
    		'q' => $options['q'],
    		'a' => $options['a'],
    		);
    Thread Starter WP_87

    (@word_press_87)

    Hey Burhi
    i did it and yes, it works very well!
    Thank you for fix the plugin for higher PHP ??

    • This reply was modified 4 years, 1 month ago by WP_87.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pay For Update’ is closed to new replies.