Guest User

Untitled

a guest
Nov 24th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. add_action('wp_head','noshowHHFCSS');
  2. function noshowHHFCSS() {
  3. echo '<style>
  4. /* Do not show hand held footer bar on cart, check out and account page*/
  5. .page-id-5 .page-id-6 .page-id-7 .storefront-handheld-footer-bar {
  6. display: none!important;
  7. }
  8. </style>';
  9. }
  10.  
  11.  
  12. if ( is_cart() || is_checkout() || is_account_page() ) {
  13. echo '<style>
  14. /* Do not show hand held footer bar on cart, check out and account page*/
  15. .storefront-handheld-footer-bar {
  16. display: none!important;
  17. }
  18. </style>';
  19. }
  20.  
  21.  
  22. add_action( 'init', 'jk_remove_storefront_handheld_footer_bar' );
  23. if ( is_cart() || is_checkout() || is_account_page() ) {
  24. function jk_remove_storefront_handheld_footer_bar() {
  25. remove_action( 'storefront_footer', 'storefront_handheld_footer_bar', 999 );
  26. }
  27. }
Add Comment
Please, Sign In to add comment