• DonF

    (@lenglemetz)


    Hi,

    Please update to contact form 7 version 4.8

    • This topic was modified 7 years, 5 months ago by DonF.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Can you update to version 4.8 of contact form 7 and wordkress 4.8?

    • This reply was modified 7 years, 5 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?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CF7 4.8’ is closed to new replies.