P. P. S.
It looks like there is a relatively easy way to change banner link and move it below menu in single posts! ??
You can try to do this with jQuery.
1. Please install and activate Insert Headers and Footers plugin that will allow you to insert JavaScript (jQuery) code.
2. Go to your Dashboard → Settings → Insert Headers and Footers → add the following code to Scripts in Header section, and click Save button:
<script type='text/javascript'>
jQuery(document).ready(function(){
jQuery('header#masthead div.site-branding > a').attr('href', 'https://example.com');
jQuery('body.single-post nav#main-navigation').after(jQuery('body.single-post div.site-branding'));
});
</script>
You can replace https://example.com
with any other link.
Kind Regards, Roman.
-
This reply was modified 8 years, 3 months ago by
Roman Bondar.