Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #375755

    Hi,

    When I choose to display blog posts in a grid view the meta info disappears. How can I have it display?

    Also, I have categories and sub categories, how can I chose to display only sub-category and not display the parent?

    Thanks!!

    #375889

    Hey youtea!

    You should have the comments and the date displayed there. Are you disabling them in Dashboard > Enfold > Blog Layout?

    The categories customization is kind of bordering on custom work but I looked into it anyway. Try opening up /enfold/includes/loop-index.php and find line 177.

    if(!empty($cats))
    

    Add this above it.

    $post_categories = wp_get_post_categories( $the_id );
    $cats = '';
    	
    foreach($post_categories as $c){
    	$cat = get_category( $c );
    	$cat = get_categories( 'child_of='.$c );
    	foreach ( $cat as $ca ) {
    		$cats .= '<a href = "'.get_category_link($ca->ID).'">'.$ca->name.'</a>'; 
    	}
    }

    Best regards,
    Elliott

    #386751

    Hey Elliot, Thanks for that the code works.

    The other issue’s still there. I’ve checked the blog display settings and in the theme options its set to display. So not sure why it’s hidden.

    Could you help with this, I’m adding site details below to give you access.

    Thanks man!

    #386752
    This reply has been marked as private.
    #387909

    Hi!

    Try deactivating all plugins and then upload a fresh copy of the theme from themeforest.

    If that does not help then send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    #388670
    This reply has been marked as private.
    #389534

    Hi!

    You actually did have them hidden in the Dashboard > Enfold > Blog Layout settings. You have to check them if you want them to display. I went ahead and checked them again for you.

    Regards,
    Elliott

    #389537

    Thanks, I’ve checked but the meta data still isn’t displayed below the post headings.
    No date, author name, or anything else.
    What could be causing this?

    Thanks

    #389950

    Hi!

    Maybe, we’re not on the same page. Can you please provide a link to the actual page/post? I can see the meta data below the post title: http://dev1.inspiraldesign.co/publications/

    Best regards,
    Ismael

    #390437

    I mean on the home page http://dev1.inspiraldesign.co
    the PUBLICATIONS section has two columns in grid view with post and it’s just the Heading and the Extract below it. There’s no info in-between.

    #391302

    Hey!

    It is hidden by default when the blog is set to grid. Try to add this on Quick CSS:

    .av-blog-meta-date-disabled .minor-meta.date-container, .av-blog-meta-date-disabled .text-sep-date {
    display: inline-block;
    }

    Best regards,
    Ismael

    #391769

    Thanks, I managed to work around by using it as Small Preview and changed some positions with CSS.

    But thanks anyway!

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Mete info missing in blog post grid view’ is closed to new replies.