Advertisement
arie_cristianD

remove submit post button in frontend submit

Aug 14th, 2024
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. add_action(
  2.     'init',
  3.     function () {
  4.         if ( class_exists( 'JNews_Frontend_Endpoint' ) ) {
  5.             remove_action( 'jnews_after_account_nav', array( JNews_Frontend_Endpoint::getInstance(), 'after_account_nav' ) );
  6.             remove_action( 'jnews_account_page_endpoint', array( JNews_Frontend_Endpoint::getInstance(), 'account_page_endpoint' ) );
  7.  
  8.         }
  9.     }
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement