Hello! Friends,
I would like to replace the custom logo only for some specific pages, is it possible to do?
I've found a hook "pagelines_before_branding_icons", but i don't know if i'm using it right.
Here is the code i added to the pagelines-customize/function.php
function frontlogo(){
echo '<a id="39" class="plbrand mainlogo-link" title="InteSys" href="
</a>
';
// the page id is 39 and 222.
}
add_action( 'pagelines_before_branding_icons', 'frontlogo' );
In this case the image is added on all pages and what i wanted to do is replace the current image by another.
Any help?
Many thanks!












