Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1356869
    Kobber
    Participant

    Hi,

    Can I have the headline and meta data below the featured image instead of above?

    – And can that be the same on my blog index page?

    – And can I have the date as the only thing in my meta data (no author and category)?

    #1357308
    Nabeel A
    Moderator

    Hi Kobber,

    Thanks for writing in!

    For 1 & 2, add the following jQuery script in your Customizer via Appearance > Customize > Custom > Edit Global Javascript

    (function($) {
    	$('.blog article').each(function(){
    		if($(this).find('.entry-featured').length) {
    			$(this).find('header').insertAfter('.entry-featured');
    		}
    	});
    	$('.single-post article').find('header').insertAfter('.entry-featured');
    })(jQuery);

    For 3, add the following code in your Customizer via Appearance > Customize > Custom > Edit Global CSS:

    .entry-header .p-meta span:nth-child(1), .entry-header .p-meta span:nth-child(3) {
        display: none !important;
    }
    .entry-header .p-meta span:nth-child(2):after {
        content: "" !important;
    }

    Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

  • <script> jQuery(function($){ $("#no-reply-1356869 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>