Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Please reenable the email field so I can test.

    Thread Starter vissersj

    (@vissersj)

    I have enabled the email field.

    Plugin Author Gemini Labs

    (@geminilabs)

    Have you tried steps 4 and 5 of the Basic Troubleshooting Steps?

    Because, something on your website is modifying the rendered HTML of the Site Reviews form. It’s changing the name="site-reviews[email]" attribute of the email field to name="site-reviews".

    Make sure to disable your LiteSpeed Cache when troubleshooting to ensure you are not viewing cached HTML.

    Thread Starter vissersj

    (@vissersj)

    Thanks, I think it has to do with this script I use in my functions.php:

    /** Hide email from Spam Bots using a shortcode.
    @param array $atts Shortcode attributes. Not used.
    @param string $content The shortcode content. Should be an email address.
    @return string The obfuscated email address. **/
    add_filter( ‘widget_text’, ‘shortcode_unautop’ );
    add_filter( ‘widget_text’, ‘do_shortcode’ );
    add_shortcode( ’email’, ‘wpcodex_hide_email_shortcode’ );
    function wpcodex_hide_email_shortcode( $atts , $content = null ) {
    if ( ! is_email( $content ) ) {
    return;
    } return ‘‘ . antispambot( $content ) . ‘‘;
    }

    Thread Starter vissersj

    (@vissersj)

    Resolved

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Bad request respons after submitting review’ is closed to new replies.