Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* change account url to woocomerce account page */
- add_filter( 'jnews_dropdown_link', 'change_account_url', 20 );
- function change_account_url( $dropdown ) {
- if ( is_user_logged_in() && array_key_exists( 'account', $dropdown ) ) {
- $dropdown['account']['url'] = wc_get_account_endpoint_url( 'dashboard' );
- }
- return $dropdown;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement