Tagged: 

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

    Hello,
    Is there a way to simply move the author and date byline form the bottom of a post to the top of a post?

    Thank you.

    #1058399

    Hey targetzero,

    Yes, you can edit the single.php file and move those.
    If you do not know how, please upload a child theme, and send us after Admin details together with a screenshot of where u want to position them!

    Best regards,
    Basilis

    #1060636
    This reply has been marked as private.
    #1062144
    This reply has been marked as private.
    #1062222

    Hi targetzero,

    Please refer to a solution posted here
    https://kriesi.at/support/topic/move-date-and-author-meta-to-under-title/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1062472

    I did look at that thread and tried those options, but no luck. Are there any other solutions to get the name and date to the top of a post?

    Thanks.

    #1063291

    Hi targetzero,

    Here is the code you can put in your funtions.php

    
    function move_postmeta(){
    ?>
    <script>
    	jQuery(window).load(function(){
    		jQuery( ".single.single-post .post-meta-infos" ).insertAfter('.big-preview.single-big' );
    	}());
    </script>
    <?php
    }
    add_action('wp_footer', 'move_postmeta');
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

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