Move Cart from main header
-
I was able to get the Main Navigation moved from the header, but now im having a hard time getting the cart moved back inline with the main navigation.
I used a snippet from searching the forums to move the menu,function child_theme_init() { remove_action( 'storefront_header', 'storefront_primary_navigation', 50 ); add_action( 'storefront_before_content', 'woa_primary_nav_wrap', 5 ); add_action( 'woa_primary_nav', 'storefront_primary_navigation' ); } add_action( 'init', 'child_theme_init' ); function woa_primary_nav_wrap() { ?> <div class="col-full primary-nav-wrap"> <?php do_action( 'woa_primary_nav' ); ?> </div> <?php }How would i do this to move the cart as well?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
The topic ‘Move Cart from main header’ is closed to new replies.
