• Resolved Biranit

    (@biranit)


    Your plugin is trying to make http calls to api.awesomemotive.com — getting a 403 forbidden response.

    What is this call for, and how can it be disabled?

    Thank you,

    Bira

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Slava Abakumov

    (@slaffik)

    This call is made to only retrieve important WP Mail SMTP plugin related notifications from its parent company, WPForms.

    To completely deactivate that you can use this hook:

    
    remove_action( 'plugins_loaded', 'wp_mail_smtp_am_notifications' );
    

    But I strongly advise to leave it as is: you will get important notifications about upcoming changes. Also, this request is made only once in a week, so no real impact on performance.

    Thread Starter Biranit

    (@biranit)

    I actually tried this, putting it in the theme’s functions.php, but it didn’t work. I suspect because ‘plugins_loaded’ was already parsed by wordpress – so I probably need to put this inside a function that is called on ‘init’.

    I don’t mind leaving this, but as I said – you need to look into why it constantly returns a 403 forbidden message…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘HTTP calls to your API’ is closed to new replies.