Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* change account url to woocomerce account page delete order list menu */
- 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' );
- }
- if ( is_user_logged_in() && array_key_exists( 'order', $dropdown ) ) {
- unset( $dropdown['order'] );
- }
- return $dropdown;
- }
- /* remove account dropdown link that generated by JNews - Video */
- remove_filter( 'jnews_dropdown_link', array( \JNEWS_VIDEO\Init::get_instance(), 'dropdown_link' ) );
- /* disable cache notice */
- add_filter(
- 'wp_statistics_cache_status',
- function ( $status ) {
- $status['status'] = false;
- return $status;
- }
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement