• We are using Sydney theme along with a plugin called Unique Headers. Unique Headers enables us to add a unique image for each page and post’s header (rather than having the same image on all pages and posts). Unfortunately, Unique Headers plugin appears to have been abandoned and is now crashing our site when we edit posts.

    Does Sydney Pro provide the functionality for unique header images?

    Any other suggestions?

Viewing 1 replies (of 1 total)
  • Hi @averycohen,

    I did testing with Unique Headers plugin. And you are right currently there is incompatibility issue.

    Meanwhile, you can use custom jQuery code to enable separate header image for particular page. For example:

    jQuery(function($) {
    
      if( $('body').hasClass('page-id-989') ) {
    
        var img = 'https://testwp.dulu.link/sydney-pro/wp-content/uploads/sites/14/2018/03/wasylko-studio-canon-nikon-74453-1.jpeg';
    
        $('.header-image').css('background-image', 'url('+img+')');
    
      }
    
    });

    You can apply the code to your site directly from dashboard with the help of custom JavaScript plugin that you can search from this link: https://www.ads-software.com/plugins/search/custom-javascript/.

Viewing 1 replies (of 1 total)
  • The topic ‘Sydney Header Feature’ is closed to new replies.