To redirect to shop page after WooSocial login, please put below code in your child theme functions.php
add_action(‘woosocial_after_login’, ‘woosocial_after_login_callback’);
function woosocial_after_login_callback() { $shop_page_url = wc_get_page_permalink(‘shop’); wp_redirect($shop_page_url); exit; }
For more information please check documentation https://woosocial.originalweb.co/documentation/