Skip to content

Instantly share code, notes, and snippets.

View adamthomson's full-sized avatar
🏠
WFH for shopifyplus.com

Adam Thomson adamthomson

🏠
WFH for shopifyplus.com
View GitHub Profile
@helgatheviking
helgatheviking / functions.php
Last active May 6, 2019 00:15
Add Beaver Builder Support to Storefront Child Theme
<?php
function remove_page_header_for_builder() {
if( is_page_template( 'template-builder.php' ) ) {
remove_action( 'storefront_page', 'storefront_page_header' );
}
}
add_action( 'storefront_page_before', 'remove_page_header_for_builder' );