Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #569622

    Hey Enfold-Team,
    I would like to know if it’s possible to move the meta information of a blogpost below its content. Currently it’s right below the title and I would like to move it in between the text and the share buttons. All the solutions I found on this board didn’t work for me.
    Kind regards
    Krestien

    #569681

    Hey krestien!

    In the /enfold/includes/loop-index.php file on lines 211 – 245 you’ll see this.

    echo "<span class='post-meta-infos'>";
    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
    echo "<span class='text-sep text-sep-date'>/</span>";
    
    	if ( get_comments_number() != "0" || comments_open() ){
    
    	echo "<span class='comment-container minor-meta'>";
    	comments_popup_link(  "0 ".__('Comments','avia_framework'),
    						  "1 ".__('Comment' ,'avia_framework'),
    						  "% ".__('Comments','avia_framework'),'comments-link',
    						  "".__('Comments Disabled','avia_framework'));
    	echo "</span>";
    	echo "<span class='text-sep text-sep-comment'>/</span>";
    	}
    
    	if(!empty($cats))
    	{
    		echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    		echo $cats;
    		echo '</span><span class="text-sep text-sep-cat">/</span>';
    	}
    
    	echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";
    	echo '<span class="entry-author-link" '.avia_markup_helper(array('context' => 'author_name','echo'=>false)).'>';
    	echo '<span class="vcard author"><span class="fn">';
    	the_author_posts_link();
    	echo '</span></span>';
    	echo '</span>';
    	echo '</span>';
    echo '</span>';
    

    That’s the post meta information your referring to. You could try moving it above line 280.

    echo '</footer>';
    

    Cheers!
    Elliott

    #570265

    Thank you for your help, it has moved down below the content. Unfortunately, as you can see on this picture, the meta is now lying above the share buttons. Could you please help me solving this problem? I want the social buttons under the meta info.
    Thanks!

    #571092

    Hi,

    Please try the following in Quick CSS under Enfold–>General Styling:

    .post-meta-infos {
        top: -26px !important;
    }

    Best regards,
    Rikard

    #571513

    Hi Rikard!
    I changed it to -65px, now it fits perfectly.
    Thanks for your help!

    #571514

    Hi!

    Glad you got it short out!
    Please do let us know if we can do anything else for you, we will be happy to help

    Cheers!
    Basilis

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