I kinda fixed it myself by adding your dashboard into the Woocommerce dashboard, so for people who wants to know how I did it, here you go:
function add_wpcf_to_dashboard() {
echo do_shortcode( ‘[wpcf_dashboard]’ );
}
add_action( ‘woocommerce_account_dashboard’, ‘add_wpcf_to_dashboard’ );
Ofcourse remove the menu afterwards and use the menu of Woocommerce itself.
-
This reply was modified 5 years, 2 months ago by bracketz.