Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #923943

    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

    #924285

    Hey jack000486,

    Can you tell us what Blog Styling you are using? Default Business, Elegant or Modern Business.

    Best regards,
    Nikko

    #924627

    I use the default business mode.

    #925066

    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

    #925572

    I had tried to change. Nothing changed.
    The previous configration below:
    $output .= $thumbnail ? “{$thumbnail}” : “”;

    How to change in a correct way?
    Thanks a lot

    #925573

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";

    #926986

    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

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.