Search code examples
wordpresswoocommercepermalinks

How to get permalink to a specific WooCommerce endpoint?


Hi I am looking how to get a permalink to a woocommerce my account page endpoint. For example edit-address or orders.

I tried this which I know can't possibly be right, it also appends a 0 onto the end of the link.

get_permalink( get_option('woocommerce_myaccount_page_id') )+"orders";

Solution

  • Replace your code with this

    get_permalink( get_option('woocommerce_myaccount_page_id') ) . "orders";
    

    PHP concatenation is dot symbol not plus symbol. https://stackoverflow.com/a/1866194/1593365. Your code seems right only