Ok, so because of security issues, the images and all HTML tags were blocked in the promotion headline. But now, we can allow it.
To do this, you have two options:
1. Wait for new theme update as I have updated the options to take some html value. This may take some time because the release date is yet to be finalized.(Only major security issues get updated asap)
2. You can update some code. For that, go to theme file adventurous/inc/panel/adventurous-theme-options.php and replace the old block at lines 1405 to 1410 with new code block:
Old code:
if( isset( $input[ 'homepage_headline' ] ) ) {
$input_validated['homepage_headline'] = sanitize_text_field( $input[ 'homepage_headline' ] ) ? $input [ 'homepage_headline' ] : $defaults[ 'homepage_headline' ];
}
if( isset( $input[ 'homepage_subheadline' ] ) ) {
$input_validated['homepage_subheadline'] = sanitize_text_field( $input[ 'homepage_subheadline' ] ) ? $input [ 'homepage_subheadline' ] : $defaults[ 'homepage_subheadline' ];
}
New Code:
if( isset( $input[ 'homepage_headline' ] ) ) {
$input_validated['homepage_headline'] = wp_kses_post( $input[ 'homepage_headline' ] ) ? $input [ 'homepage_headline' ] : $defaults[ 'homepage_headline' ];
}
if( isset( $input[ 'homepage_subheadline' ] ) ) {
$input_validated['homepage_subheadline'] = wp_kses_post( $input[ 'homepage_subheadline' ] ) ? $input [ 'homepage_subheadline' ] : $defaults[ 'homepage_subheadline' ];
}
Now, option 1 is safer option but you might need to wait a bit however option 2 is faster but you need some knowledge of editing files and some coding or you might end up destroying the site. Taking a backup before performing this is very much recommended.
Use Option 2 at your own risk
Let me know how it works out.
Regards,
Pratik