@kfunk: Sorry this option in not available at this stage. We will work on it for further releases. We wanted to keep it only in homepage that is why we called in Homepage Headline.
If you know the technical php then you can do this by building child theme. You can just build child theme and then create functions.php file in your child theme, copy fucntion catchkathmandu_homepage_headline
from catchkathmandu-functions.php
file to your child theme functions.php
file. Then in your child theme functions.php
file replace the following code
if ( ( is_front_page() || ( is_home() && $page_for_posts != $page_id ) ) && ( empty( $disable_headline ) || empty( $disable_subheadline ) || empty( $disable_button ) ) ) {
With the following code
if ( empty( $disable_headline ) || empty( $disable_subheadline ) || empty( $disable_button ) ) {