Hello, had a couple of questions regarding meta-date and their display.
First, is there anyway to keep the comment count and icon from disappearing on mobile devices? You can see as you re-size the screen, once it gets to a certain width, the comment count icon disappears. Is this just a simple CSS edit?
Also, any reason why the author isn’t showing up under title on single post pages? I looked at the loop-single.php file and it looks like there is a PHP if statement that checks to see if it’s enabled within the theme settings. It is (it shows up on the home page). Any thoughts?
Also, is there an estimated release of version 5?
Thanks,
Hi,
1. Please try this custom css for comments: http://screencast.com/t/2mjuxKFjo
.post .entry-comments-views {
display: inline-block;
}
2. The author can be enable from Theme Panel > Post Settings: http://screencast.com/t/r34vUetklX
If you don’t want to show author on modules/blocks please comment this line from modules: http://screencast.com/t/iylmubj8Ct
Newspaper 5 will be released approximately in 2 months…I can’t provide you an exact date as we still work on it.
Thanks!
I appreciate the response but my question wasn’t really answered. I have enabled the Author option in the settings. It shows up on my homepage just fine. However it does not show up under the post title on the single post page. I’m not looking to remove it… I’m looking to add it.
Also, the comments count is only removed when the screen gets under a certain width. Is the display hidden of width under X amount for example?
Thanks for the update on v5. Look forward to it.
Hi,
Please take a look on post template files(also single_template) must be commented author code there: http://screencast.com/t/CaSwSlJPx
Comments were hidden under 500px screen width. This is the code that it was overwritten by code from above and now it will be displayed on all screens:
@media (max-width: 500px)
.post .entry-comments-views {
display: none;
}
I see that works fine on your site: http://screencast.com/t/aJHMvzCl
Hope this helps!