Search code examples
phpwordpresswoocommerceslug

WooCommerce change My Account page slug


I want to change the address of My Account page.
It says right now my-account after Website URL. i.e.

Website URL/my-account

I want to make it myaccount For e.g

website URl/myaccount

Solution

  • There are 2 ways to do the same,

    1) You can change the slug from WP-Admin->Pages->My Account page.

    2) By defining custom rewrite rule,

    function custom_rewrite_tag() {
      add_rewrite_tag('%myaccount%', 'my-account');
    }
    add_action('init', 'custom_rewrite_tag', 10, 0);