In order to display the Home page introduction text in all the pages, please follow the instructions below:
1.Ā Please backup the original files before editing.
2.Ā Go to Appearance -> editor and open theĀ front-page.php file
3.Ā Remove the following code:
function sc_homepage_intro( $default ) {
$text = genesis_get_option( ‘homepage_intro’, ‘social-coup’ );
return $text ? wpautop( $text ) : $default;
}
add_filter( ‘genesis_seo_description’, ‘sc_homepage_intro’ );
4.Ā Update the file
5.Ā Then select genesis from the ‘Select theme to edit’ drop down
6.Ā Click on header.php. Add the following line at the top of this page:
function sc_homepage_intro( $default ) {
$text = genesis_get_option( ‘homepage_intro’, ‘social-coup’ );
return $text ? wpautop( $text ) : $default;
}
add_filter(‘genesis_seo_description’, ‘sc_homepage_intro’);
7.Ā Update the file