stuart-d
4/3/2018 - 12:34 PM

Remove cart from storefront mobile sticky footer

Remove cart from storefront mobile sticky footer

add_filter( 'storefront_handheld_footer_bar_links', 'remove_mobile_links' );
function remove_mobile_links( $links ) {
	unset( $links['cart'] );

	return $links;
}