How to remove footer bar from functions.php ?
-
Hi, I need to remove the footer bar from the checkout page. Specifically this action whicih is added from the sfb_setup() method.
add_action( 'storefront_before_footer', array( $this, 'sfb_footer_bar' ), 10 );
Tried this but no luck yet:
add_action( 'wp', 'rm_footer_bar_from_checkout' ); function rm_footer_bar_from_checkout() { remove_action( 'storefront_before_footer', array( 'Storefront_Footer_Bar', 'sfb_footer_bar' ), 99 ); }
- The topic ‘How to remove footer bar from functions.php ?’ is closed to new replies.