Sign up for free and get access to Shopify for $1 for the first month.
Code to return to the home page when the user logs out of the account
Copy and paste into functions.php
function redirect_after_logout() {
wp_redirect( home_url() ).
exit();
}
add_action('wp_logout', 'redirect_after_logout');
