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

    Hi Guys

    Something peculiar happen on my blog page. When I click on any of the blog post link from the homepage and side bar, the title disappear. It only appear when I click from the blog page itself using Magazine layout.

    Also, I will like to add the date below the category. Please advise how can this be done. I’m using the child theme.

    Best Regards
    Din

    #961341

    Hey dinmix,
    I believe the issue is that some of the posts are created using the advanced layout builder, and the others with the title have been created with the default editor. Please create all of your posts with the default editor.

    Best regards,
    Mike

    #961343

    Hi Mike

    Noted with thanks. I will fixed that. Can I check how do I move the date below the category like this.

    Title
    Category
    Date

    Best Regards
    Din

    #961938

    Hi,
    To move the postmeta date from the bottom of the post in the blog post grid, up to below the category, Try adding this code to the end of your functions.php file in Appearance > Editor:

    
    function move_postmeta_date(){
      ?>
      <script>
    jQuery(window).load(function(){
      jQuery( '.slide-entry' ).each(function() {
      jQuery( this ).find( 'time.slide-meta-time' ).insertBefore( jQuery(this).find('span.av-vertical-delimiter') );
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_postmeta_date');

    Then add this code in the General Styling > Quick CSS field:

    
    time.slide-meta-time {
        position: relative;
        top: -30px;
    }

    Please see screenshot in Private Content area.

    Best regards,
    Mike

    #961976

    Hi Mike

    Thank you very much. It work!

    Best Regards
    Din

    #962037

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Missing Title on Blog Post’ is closed to new replies.