How to Redirect Users After WooCommerc...
Adjust the ‘$redirect = ““;’ entry to customize the redirect ...

WPCodeBox
693
Assign the ‘hideifloggedout’ CSS class to any element you wish to hide from users that are not logged in. This helps you control content visibility for logged-out users.
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
/* HIDE CONTENT WHEN LOGGED OUT */
body:not(.logged-in) .hideifloggedout {
display: none !important;
}





