There’s a similar posting about this, but this code snippet won’t do the trick, neither when I use it in our child theme nor when applied directly to js/avia.js inside the main enfold theme folder:
jQuery('.page article').each(function(){
jQuery(this).find('.entry-content-header').after(jQuery(this).find('.big-preview').detach());
})
I’ve verified my js/avia.js and the code is correctly being shown at the end of wp-content/themes/enfold/js/avia.js?ver=1, but the featured image is still on top of everything.
Oh I’d be interested in this, only if you can update in the child theme.
Wordpress.org … is that what you are asking?
Hi!
I’m talking about the Blog Style that you set on Blog Posts element or on the Enfold > General Settings > Blog Style.
Cheers!
Ismael
In mine blog style is set to “Multi Author Blog”.
I just saw the Single Post Style setting, too. But none of the 3 gives the desired result, so I’d really like to float that featured image inside of my article which would require it to be placed after the header section within the HTML source. The CSS part of it I’ll take of by myself.
Ismael:
Single Author, big preview Pic (no author picture displayed)
But it’s in a Blog Grid format: http://planningforever.com/blog
Because I could NEVER get the read more excerpt to work.
Hey @saundra!
This code will work:
jQuery(function() {
jQuery('.slide-entry').each(function(){
jQuery(this).find('.slide-content .slide-meta').after(jQuery(this).find('.slide-image').detach());
})
});
Best regards,
Josue