farinspace
Forum Replies Created
-
Forum: Plugins
In reply to: [Nooz] Add date to news feedHere 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; }Forum: Plugins
In reply to: [Nooz] Add date to news feedIn 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; }Forum: Plugins
In reply to: [Nooz] Add date to news feedAdditionally, 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.
Forum: Plugins
In reply to: [Nooz] Add date to news feedI 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.
Forum: Plugins
In reply to: [Nooz] Yearly grouping tab linksCurrently Nooz has limited support for this type of grouping (at least out of the box).
However, Nooz has built-in developer hooks which can be used to do more advanced customizations and groupings. Our upcoming release will also improve these hooks and the overall display further.
Forum: Plugins
In reply to: [Nooz] Shared on LinkedInHi @talentoracle, sharing is not currently a built in feature of the Nooz plugin. Likely what you are seeing is some feature added by another plugin (perhaps even WordPress e.g. Jetpack).
Forum: Plugins
In reply to: [Nooz] Sort Press Coverage by DateThe default ordering is done by
menu_orderthenpost_datein descending order.New posts default to
menu_orderof 0. Withinmenu_order=0these posts are sorted by date in descending order.Adding a “order” to the post will cause the post to be placed at the top.
Please confirm that you do not have additional code in your functions.php file which may be altering this behavior.
Forum: Plugins
In reply to: [Nooz] Cant add more NoozOn your news page what does the shortcode look like?
Do you have pagination enabled?
[nooz type="release" use_pagination="yes"]Have a look at the help section: Nooz > Settings > Help (upper right corner) > Shortcode Usage.
Forum: Plugins
In reply to: [Nooz] Set page template for press release pageThere currently isn’t an easier user experience, other than the “WordPress Way” of template setup, the following is info on template setup:
https://wordpress.org/support/topic/static-post-titles-customizing-post-formatting/
Additionally:
* have a look at the Nooz Help: Nooz > Settings > Help (upper right corner)
* also look around the forums here as many ask related questionsForum: Plugins
In reply to: [Nooz] Plugin styleAfter looking at your screenshot a little closer, I’ve noticed the following:
1) CSS syntax does not allow for
// commentstyle syntax, only/* comment */may be used (this can be causing issues with your styles.2) If you are using the theme customizer, confirm that your theme is using
wp_head()function in the header somewhere, this function, just likewp_footer(), is where WordPress hooks into the theme.Forum: Plugins
In reply to: [Nooz] Plugin styleFrom the screenshot, it looks like the style does apply some padding above the excerpt. What it seems you are after is some spacing in-between each item. Try:
.nooz-item { margin-bottom: 40px; }I would also recommend that you take a look at the Nooz help section: Nooz > Settings .. Help (on the upper right corner of the Settings Page). Here you can see a birds-eye view of the available css class names and HTML structure.
- This reply was modified 8 years, 8 months ago by farinspace.
Forum: Plugins
In reply to: [Nooz] Plugin styleI’ll try to help. Make sure you check the correct css class is being used, additionally take a look at a CSS Reference for syntax guides.
https://developer.mozilla.org/en-US/docs/Web/CSS/Reference
Give the following a try:
.nooz-excerpt { padding-top: 20px; }Forum: Plugins
In reply to: [Nooz] Remove Bullets from Press CoverageLet me see if I can help.
I recommend that you take a look at the help menu for the Nooz plugin. In the WordPress Admin, go to: Nooz > Settings > Help (the dropdown at the upper right corner) > List Output
The Nooz HTML structure has several well defined CSS class names. In your case we would use the
nooz-listclass name..nooz-list { list-style: none; }Forum: Plugins
In reply to: [Nooz] Adding categories to Nooz postUnfortunately the plugin does not support tags/categories out of the box.
Please let me know the specific name of the plugin you are using, so that I can investigate a good integration, our goal is to make our plugin as extensible as possible.
With that said, the Nooz plugin has some filters that maybe of use:
nooz_release_custom_post_type_optionsandnooz_coverage_custom_post_type_optionsthese filters allow you to alter the$argsarray whenregister_post_type()is called.Reference:
https://codex.wordpress.org/Function_Reference/register_post_typeForum: Plugins
In reply to: [Nooz] How to add posts from a specific category to Nooz Releases?Hi, hopefully you’ve found a solution to your need.
If not, you can try the following filter:
nooz_shortcode_query_optionsseenooz/inc/NoozCore.php, line:704 … this allows you to manipulate the WP_Query options for the shortcode output.Here is some additional reference material that may help out:
https://developer.wordpress.org/reference/classes/wp_query/
https://stackoverflow.com/q/35309058/97433- This reply was modified 8 years, 9 months ago by farinspace.