Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. add_action( 'init', 'ec_child_add_footer_icons_to_header' );
  2.  
  3. function ec_child_add_footer_icons_to_header() {
  4. remove_action( 'electro_header_v3', 'electro_navbar_mini_cart', 30 );
  5. remove_action( 'electro_header_v3', 'electro_navbar_wishlist', 40 );
  6. remove_action( 'electro_header_v3', 'electro_navbar_compare', 50 );
  7. add_action( 'electro_header_v3', 'electro_header_social_icons', 30 );
  8. }
  9.  
  10. function electro_header_social_icons() {
  11. ob_start();
  12. electro_footer_social_icons();
  13. $footer_social_icons = ob_get_clean();
  14. ?><div class="header-social-icons pull-right"><?php echo $footer_social_icons; ?></div>
  15. <style>.header-social-icons { padding-right: 15px; }.header-social-icons .footer-social-icons { margin-bottom: 0; }.header-social-icons .footer-social-icons .social-icons a { color: #333e48; line-height: 54px; }</style><?php
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement