I found thefollowing code on WooCommrece MyAccount page styling is broken
// Revert Woocommerce Styles // =============================================================================
function revert_woo_styles(){
remove_action( 'x_enqueue_styles', 'x_woocommerce_enqueue_styles', 10, 2 );
}
add_action( 'after_setup_theme', 'revert_woo_styles' );
// =============================================================================
This is to fix the fact X Theme changes default woocommerce my acount page to 1 column, horizontally aligned. But it also changes all other X WooCommerce theme templates. How can I apply it just to the logged in my account page.
The result achieved should be like Woocommerce vertical my account tabs
Thanks!