This article is for all Minimum PRO theme users. A call out box is coming after header on all inner pages. Using conditional tag you can remove it from all inner pages. Open the functions.php file in Theme Editor ( Dashboard->Appearance->Editor) and find this function “minimum_site_tagline”. Now replace the full code by this code.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
function minimum_site_tagline() { if( !is_front_page() ) return ; printf( '<div %s>', genesis_attr( 'site-tagline' ) ); genesis_structural_wrap( 'site-tagline' ); printf( '<div %s>', genesis_attr( 'site-tagline-left' ) ); printf( '<p %s>%s</p>', genesis_attr( 'site-description' ), esc_html( get_bloginfo( 'description' ) ) ); echo '</div>'; printf( '<div %s>', genesis_attr( 'site-tagline-right' ) ); genesis_widget_area( 'site-tagline-right' ); echo '</div>'; genesis_structural_wrap( 'site-tagline', 'close' ); echo '</div>'; } |