osvin
osvin

Reputation: 31

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

Upvotes: 1

Views: 2591

Answers (1)

Ahmed Ginani
Ahmed Ginani

Reputation: 6650

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);

Upvotes: 2

Related Questions