Tagged: logo
hello.
I buyed and already instaled this theme, and i (one click) imported the “enfold 2017 Demo” content to my site.
But now i would like to have the slider like the one in “Startup demo”. is this possible? can you send me the a file to import in the plugin?
Hey 1pedro,
Do you mean this https://cl.ly/0d1O2N2C3F1v ?
It is a color section with video background and other elements in it.
If you need further assistance please let us know.
Best regards,
Victoria
Hi,
Is there anything else we can assist with on this issue, or shall we close this then?
Best regards,
Mike
hello,
can you help me, if possible, to have different header logo per page?
Hi,
Please try this solution: https://kriesi.at/support/topic/different-logo-on-different-pages/#post-672481
Best regards,
Mike
hi,
its just add this code to functions.php?
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if( is_page(21) ) {
$logo = "http://www.domain.com/wp-content/uploads/logoforpage21.jpg";
} elseif ( is_page(22) ) {
$logo = "http://www.domain.com/wp-content/uploads/logoforpage22.jpg";
} elseif ( is_page(23) ) {
$logo = "http://www.domain.com/wp-content/uploads/logoforpage23.jpg";
}
return $logo;
}