Can you update to version 4.8 of contact form 7 and wordkress 4.8?
-
This reply was modified 8 years, 11 months ago by
stichdevil.
In our company we found this rapid fix, hope it will be helpful.
File: ‘/wp-content/plugins/contact-form-7-star-rating/starrating.php’
Line 31:
From
if(function_exists('wpcf7_add_shortcode')) {
To
if(function_exists('wpcf7_add_form_tag')) {
Line 36 and 37:
From
wpcf7_add_shortcode( 'starrating', 'wpcf7_starrating_shortcode_handler', true );
wpcf7_add_shortcode( 'starrating*', 'wpcf7_starrating_shortcode_handler', true );
To
wpcf7_add_form_tag( 'starrating', 'wpcf7_starrating_shortcode_handler', true );
wpcf7_add_form_tag( 'starrating*', 'wpcf7_starrating_shortcode_handler', true );
Line 97:
From
if ( ! is_array( $tag ) ) {
To
if ( empty( $tag ) ) {
Line 101:
From
$tag = new WPCF7_Shortcode( $tag );
To
$tag = new WPCF7_FormTag( $tag );
The fix did not work for us, does anyone else have an idea how to fix the plugin with the newest version of WP and CF7?