-
AuthorPosts
-
January 6, 2015 at 5:56 pm #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!!
January 6, 2015 at 11:13 pm #375889Hey 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,
ElliottJanuary 28, 2015 at 4:01 am #386751Hey 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!
January 28, 2015 at 4:02 am #386752This reply has been marked as private.January 29, 2015 at 7:09 pm #387909Hi!
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,
ElliottJanuary 31, 2015 at 2:41 am #388670This reply has been marked as private.February 2, 2015 at 6:34 pm #389534Hi!
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,
ElliottFebruary 2, 2015 at 6:37 pm #389537Thanks, 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
February 3, 2015 at 10:47 am #389950Hi!
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,
IsmaelFebruary 3, 2015 at 11:05 pm #390437I 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.February 5, 2015 at 1:58 pm #391302Hey!
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,
IsmaelFebruary 6, 2015 at 12:27 am #391769Thanks, I managed to work around by using it as Small Preview and changed some positions with CSS.
But thanks anyway!
-
AuthorPosts
- The topic ‘Mete info missing in blog post grid view’ is closed to new replies.