Tagged: 

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #898047
    #898447

    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

    #898467
    This reply has been marked as private.
    #898472

    Hi,
    Is there anything else we can assist with on this issue, or shall we close this then?

    Best regards,
    Mike

    #905104

    hello,
    can you help me, if possible, to have different header logo per page?

    #905283
    #905752

    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;
    }
    #906216

    Hi,

    Yes, please try that out. You might need to change the page IDs in the code though to reflect the correct IDs on your page.

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.