Hello,
I’m an administrator in a technology blog, and we’ve been using it for a while. When we started the blog, we used AMP to improve the user experience, however, the product has been improved and we want to deactivate it,
Before, I understand that there was a button inside the editor, in the integrations section to disable it, but now it does not appear,
How could I disable AMP on the website, so that when a user clicks on the website from Google, it sends them directly to the website?
Thanks.
The button was recently removed from the editor to prevent enabling amp… which also prevents disabling amp 
You can paste this in to your browser dev tools of the admin page:
fetch("/ghost/api/admin/settings/", {"headers": {"content-type": "application/json"}, "body": "{\"settings\":[{\"key\":\"amp\",\"value\":false}]}", "method": "PUT"});
expanded version that's a bit easier to read but harder to paste:
fetch("/blog/ghost/api/admin/settings/", {
"headers": {
"content-type": "application/json"
},
"body": "{\"settings\":[{\"key\":\"amp\",\"value\":false}]}",
"method": "PUT"
});