Home Forums Trusted Pro Header Image Reply To: Header Image

#2367
Andy
Keymaster

It is possible using a slider plugin. You would need some php knowledge.
You could copy the header.php file to a child theme and change it to display the content from a slider plugin.

For example, in the header.php file there is the trusted_header_title() function which prints out the header image/title/excerpt etc, and you could make changes so that it displays a slider instead based on certain conditions.

e.g. to show slider only on home page:

if ( is_home() ) {
    echo do_shortcode( '[slider-plugin-shortcode]' );
} else {
    trusted_header_title();
}

replacing slider-plugin-shortcode with the actual shortcode for whatever plugin you use.