Advertisement
Guest User

Untitled

a guest
Jul 8th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. #for 1)
  2. add_action('after_setup_theme','kleo_remove_actions');
  3. function kleo_remove_actions()
  4. {
  5.         remove_action('wp_head', 'kleo_home_page_image', 9);
  6.     #for 4)
  7.     remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');
  8. }
  9. function render_user_search()
  10. {
  11.    return '';
  12. }
  13.  
  14. #for 3)
  15. add_filter('kleo_bp_profile_default_top_tab','my_default_tab');
  16. function my_default_tab() {
  17.     return 'looking-for';
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement