@xiangyuli: Hello there,
Firstly you will need to create a child theme. You can use our plugin Generate Child Theme to create a child theme. Install and Activate the plugin.
Now,
Go to => Dashboard => Generate Child Theme => Select Parent Theme as Catch Fullscreen Pro, fill the remaining fields and Click Generate. This will create and activate the child theme.
Finally,
Go to => Child Theme Folder => functions.php and add the following Code.
function catch_fullscreen_header_description( $before = '', $after = '' ) {
if ( is_front_page() ) {
$header_media_text = get_theme_mod( 'catch_fullscreen_header_media_text' );
if ( $header_media_text ) {
echo $before . '<p>' . wp_kses_post( $header_media_text ) . '</p>' . $after;
}
} elseif ( is_singular() && ! is_page() ) {
echo $before . '<div class="entry-header"><div class="entry-meta">';
catch_fullscreen_posted_on();
echo '</div><!-- .entry-meta --></div>' . $after;
} elseif ( is_404() ) {
echo $before . '<p>' . esc_html__( 'Oops! That page can’t be found', 'catch-fullscreen-pro' ) . '</p>' . $after;
} elseif( is_shop() ) {
echo $before . '<p>' . esc_html__( 'Hello', 'catch-fullscreen-pro' ) . '</p>' . $after;
} else {
the_archive_description( $before, $after );
}
}
Replace the text Hello
with the text you want to show up as a tagline on your shop page.
Let me know if this works out!
Kind Regards,
Skandha