I took a look at the source code for the widget, the date is available in the source HTML, however, it seems that there is CSS that has been added to hide the date. You will have to edit your CSS.
Additionally, all though there is not an easy out-of-the-box way to merge the feeds (I will add to the to-do list). Nooz Releases and Coverage are “post types” in WordPress, you are able to use WordPress’s own built-in functions to get post lists and display posts (see https://codex.wordpress.org/Class_Reference/WP_Query)
Again, I’ve made a note of merging the feeds. We have a pending release which I hope I am able to add this particular piece of functionality.
Thanks! All we did was drop the shortcode into the widget. I will poke around in the CSS on the weekend to see if I can find.
Hi,
I checked the CSS and did not see anything hiding the .nooz-datetime.
I have modified the shortcake and it still does not change what is displayed.
If I set it up as an new page it is fine. But as soon as I put it in a container it seems to only show the title.
In viewing the CSS through the browsers debug console I see the offending line:
.home_column_3_news .nooz-list li .nooz-datetime {
display: none;
}
try changing that or adding the following to the bottom of your CSS file.
.home_column_3_news .nooz-list li .nooz-datetime {
display: block;
}
Here are some additional styles to help match your look and feel:
.home_column_3_news .nooz-list li .nooz-datetime {
background-color: transparent;
color: #404040;
display: block;
font-size: 0.8rem;
font-weight: 300;
padding: 0;
}
Thanks! All worked. Apparently the container blocks the CSS.