Now the bolg layout as default:
Order is:
1 Picture
2 Title
3 Author
I want to change to order below:
1. Title
2. Author and lastest edit date
3. Picture.
How to do?
Thanks a lot
Hey jack000486,
Can you tell us what Blog Styling you are using? Default Business, Elegant or Modern Business.
Best regards,
Nikko
I use the default business mode.
Hi,
Please take a look at the post here
https://kriesi.at/support/topic/home-page-blog-move-title-comments-above-image/
it should be able to assist you properly
Best regards,
Basilis
I had tried to change. Nothing changed.
The previous configration below:
$output .= $thumbnail ? “{$thumbnail}” : “”;
How to change in a correct way?
Thanks a lot
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
Hi,
Thank you for the update. Please remove the modification then use this script in the functions.php file.
add_action('wp_footer', 'ava_custom_script');
function ava_custom_script(){
?>
<script type="text/javascript">
(function($) {
function a() {
$('#top .post-entry').each(function() {
$(this).find('.entry-content-header').insertBefore($(this).find('.big-preview'));
});
}
a();
})(jQuery);
</script>
<?php
}
Best regards,
Ismael