How to force HTTP and stop SSL completey on WordPress website

You can force it in the .httaccess file

# Force HTTP
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^(.*)$ http://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]