what if you want to have a custom page in woocommerce? For example a page called abc under my-account
best way is to use shortcodes. Create a new page under my-account, ie my-account/abc and put in the shortcode [abc_shortcode]
then in functions.php
function abc_function( $atts ){ wc_get_template( 'myaccount/abc.php' ); } add_shortcode( 'abc_shortcode', 'abc_function' );
now you need to create the abc.php file which can contain anything