• Resolved rainsey

    (@rainsey)


    hi, the free plugin does not ignore the Google merchant bot John Smith and sends emails that impacts our email spam rating. It would be good if a simple check could be used to exclude this bot and ignore any John smith emails addresses.

    we’re unable to disable the bot as it affects our Google shopping feeds. I’m sure there are many others in the same situation.

    thanks

    • This topic was modified 1 year, 1 month ago by rainsey.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @rainsey,

    I apologize for any inconvenience this has caused.

    We’ve had a similar report from another client regarding fake abandoned cart notifications originating from the email address ‘[email protected]’. To address this, we’ve created a filter that can help prevent your system from capturing abandoned carts from this specific domain.

    If you can confirm that the fake abandoned carts logged on your site are also from the ‘@storebotmail.joonix.net’ domain, please add the following custom code to the “functions.php” file of your active theme:

    add_filter( 'wcal_abandoned_cart_user_email' ,'wcal_abandoned_cart_user_email_callback',10, 2 );

    function wcal_abandoned_cart_user_email_callback ( $billing_email_restriction , $billing_email ) {
    $billing_email_restriction = preg_match("/(storebotmail)/i", $billing_email ) ? true : false;
    return $billing_email_restriction;

    }

    After implementing these changes, please monitor the situation and let us know if you continue to receive fake abandoned cart notifications from that email address. If you notice any different email domains for the fake carts, please share those specific addresses with me so we can investigate further.

    I look forward to your response.

    Thread Starter rainsey

    (@rainsey)

    Thanks for the response.

    The bot emails are from [email protected] and [email protected] with various numbers. Google uses the bot to check google shopping feed pricing is correct.

    i’ll try the code with ‘johnsmith’ and see how the filter goes

    • This reply was modified 1 year, 1 month ago by rainsey.
    Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @rainsey,

    Thank you for the update.

    Please try the provided filter code with the common identifier “johnsmith” and please monitor that the Google bot’s activity no longer impacts your email spam rating.

    Let me know the results and if you need further assistance with anything else.

    Thread Starter rainsey

    (@rainsey)

    Hi @priyankajagtap , the filter has worked as expected since implementation. No Google merchant bot abandoned carts have been recorded by the plugin and no spam emails sent that impact our domain. Thanks for the prompt support.

    Plugin Support priyankajagtap

    (@priyankajagtap)

    Hi @rainsey,

    Thank you for the update! I’m glad to hear that the filter is working as expected and that there have been no issues with abandoned carts or spam emails.

    If you need any further assistance or have any other questions, feel free to reach out.

    If you like our plugin and our service, then it would be great if you could give us a review here. That would help us immensely. 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Google merchant bot’ is closed to new replies.