farinspace
Forum Replies Created
-
Forum: Plugins
In reply to: [Nooz] Pagination not working in latest WP update@michelejmartin, it is difficult to troubleshoot from just looking at the URL above.
My suspicions are:
– there is a URL rewrite issue, something got screwy and prevents the “/page/[n]” rule from working for the “news” page
– likely a plugin or plugin-config or wordpress conflict of some sortIf you would like I can troubleshoot further, if you are willing to provide further access to a non-production/staging site.
You can contact me directly: dbegunoff at gmail dot com
- This reply was modified 5 years, 9 months ago by farinspace.
Forum: Plugins
In reply to: [Nooz] Pagination not working in latest WP update@michelejmartin, my initial tests seem to work ok with the latest version of wp 5.5.1 and Nooz 1.6.0
Do you have a url i can look at and test?
you can try the following:
WP Admin > Settings > Permalinks > Save Changes
(this should flush and recreate wp rewrite rules)- This reply was modified 5 years, 9 months ago by farinspace.
Forum: Plugins
In reply to: [Nooz] Giving featured image a different link@doktorramiz, this would require some template changes. As you may have noticed, the box content is wrapped with an A tag which becomes the primary link for the entire box.
I would recommend you use your own theme/skin for Nooz. You can do the following:
1) create a copy of wp-content/plugins/nooz/themes/outline folder
2) place the copy in wp-content/themes/[your-theme-folder]/includes/outline
3) use a wordpress hook to switch the theme/skin that nooz uses (see below)add_filter( 'nooz_theme_file', function( $file ) { return get_stylesheet_directory() . '/includes/outline/theme.php'; } );The above is a bit more advanced, we are working to make this step a bit easier and straight forward .. You will likely need to make adjustments to “theme.php” file.
Forum: Plugins
In reply to: [Nooz] Button-Size according to wordlength@stefanrauhut, I will have a closer look and see if I can adjust general styles to take your use-case into account.
For now I would recommend that you take a look at the HTML and associated css-class-names. For instance you can adjust the specific tab widths with the following CSS:
/* adjust all tabs at once */ .nooz-taxonomy__term { width: 240px; } /* adjust individual tabs */ .nooz-taxonomy__term--nooz_mixed { width: 200px; } .nooz-taxonomy__term--nooz_release, .nooz-taxonomy__term--nooz_coverage { width: 240px; }Forum: Plugins
In reply to: [Widget Visibility Without Jetpack] Looking to Contribute@darthtater, Thanks .. adding link so I remember for next time …
https://github.com/toniginard/wordpress-widget-visibility-without-jetpack
Forum: Plugins
In reply to: [Nooz] Compatible with Divi builderAt the moment it is untested, I can’t say how it would function exactly.
Nooz modifies the post_content in a few ways, adding in a dateline, boiler, contact and ending. This may interfere with the way Divi does things (or visa-versa).
I’ll keep this request open, until i have an opportunity to test and figure out what a good option is for compatibility with Divi.
Forum: Plugins
In reply to: [Resource Library] PLEASE HELP!!@mhsupermom, my apologies for this late reply.
It would be difficult to tell what is causing the plugin to work, then not to work and vis-versa, my first guess is some conflict with other code/plugins.
We do not have plans at the moment to update this plugin, until we are satisfied with our new release and with further testing. However, you are welcome to try it out … keep-in-mind it has significantly changed from the original.
Additionally, I have not done much testing of “moving from old-version to new-version”. But, we do use our plugin in production, typically starting from a fresh-install.
if you are interested, please reach out: dbegunoff at gmail dot com
Forum: Plugins
In reply to: [Nooz] Space at bottom of releaseBy the looks of it, it seems the above worked out for you. Do let me know if you have any more questions that I can help you with.
Forum: Plugins
In reply to: [Nooz] Space at bottom of releaseI would recommend you use the following:
.nooz-release__content { padding-bottom: 40px; }The above will add space at the bottom, the “nooz-release__content” css class is attached to a DIV tag that wraps the entire press release content.
Forum: Plugins
In reply to: [Nooz] Front End Design & Compatibility with BuddyPress & YouzerHi @rskangel,
The short answer: I would have to say that as of v1.6.0 Nooz is not compatible with buddypress and youzer plugins, you should not run into any issues but we do not have integrations with those two plugins.
While the Nooz plugin is minimally styled, it is left up-to the site admin to style Nooz to match their website.
Here is an example of Nooz that has been customized with CSS: https://bit.ly/2xj6Z1J (again, keep in mind that as of v1.6.0 knowledge of CSS/HTML helps).
We have written the plugin to do things the “WordPress Way”, this means you can customize functionality using actions and filters. A “Press Release” and “Press Coverage” are WordPress Post Types which can be used with traditional wordpress functionality, code and templating.
Thank you for your feedback, i will personally look into buddypress and youzer to explore any possible integrations.
- This reply was modified 6 years, 2 months ago by farinspace.
Forum: Plugins
In reply to: [Nooz] Two excerpts fieldsMy recommendation would be option #1, this is because only one excerpt needs to be created and maintained.
Option #2, allows for custom secondary excerpts but will also fallback to the default excerpt if a secondary excerpt is not present.
Forum: Plugins
In reply to: [Nooz] Two excerpts fields1) One quick way to do this is to trim the excerpt specifically on the home page, something like this in your
functions.phpfile:add_filter( 'nooz_post_data', function( $post_data ) { if ( is_front_page() ) $post_data['excerpt'] = wp_trim_words( $post_data['excerpt'], 10, '...' ); return $post_data; } );2) However if you want specifically different excerpts for home vs everywhere else you can enable ‘custom-fields’ for press releases/coverage and create a custom field. In the example below you could add a new custom field named
my_alt_excerptwhich is only used on the front-page. Something like this in yourfunctions.phpfile:add_filter( 'nooz/post-types/nooz_release/options', 'my_enable_custom_fields' ); add_filter( 'nooz/post-types/nooz_coverage/options', 'my_enable_custom_fields' ); function my_enable_custom_fields( $options ) { $options['supports'][] = 'custom-fields'; return $options; } add_filter( 'nooz_post_data', function( $post_data ) { if ( ! is_front_page() ) return $post_data; global $post; $alt_excerpt = get_post_meta( $post->ID, 'my_alt_excerpt', TRUE ); $post_data['excerpt'] = $alt_excerpt ?: wp_trim_words( $post_data['excerpt'], 10, '...' ); return $post_data; } );Forum: Plugins
In reply to: [Nooz] First two paragraphs have no vertical space@jerepowers, I see the issue. I am adding it to our to-do list.
Please let me know which Nooz version-number you are using?
I have included some css for a quick fix:
.nooz-release__body p:nth-child(2) { margin-top: 15px; }You can place the above in: Admin > Appearance > Customize > Additional CSS
Forum: Plugins
In reply to: [Nooz] CSS for release endingCurrently the plugin does not style much out-of-the-box (this is intentional), leaving it up to the developer to adjust as needed, however having a managed/styled version is on our feature-list.
But you are correct, Nooz adds several selectors so that you can target and style specific elements, here is some sample css to do what you would like:
.nooz-release__ending { line-height: 1.4; margin-top: 15px; text-align: center; }You can place the above in: Admin > Appearance > Customize > Additional CSS
Forum: Plugins
In reply to: [Nooz] Shortcode [nooz-release count=”*”] not working