After buying products by the customer, I am trying to send an email to the customer and when the customer clicks on the link provided by the product rating email, it should be redirected to the account / my account page of the customer.
My code functions.php
to get the WooCommerce my account URL
$myaccount_page = get_option( 'woocommerce_myaccount_page_id' );
if ( $myaccount_page ) {
$myaccount_page_url = get_permalink( $myaccount_page );
}
I modified this code into customer-completed-order.php and put it in
<h2> Go to your account page for review </h2>
<a href="http://animax.cf/product/happy-ninja/#reviews">
<img src="http://animax.cf/wp-content/uploads/2015/12/product-reviews.png" alt="Product Rating">
</a>
How will I get get woocomerce myaccount url in above code?