farinspace
Forum Replies Created
-
Forum: Plugins
In reply to: [Resource Library] PLEASE HELP!!@mhsupermom, I would be more than happy to try to help out …
I did a few tests with the current RELEASED plugin version v0.1.2 and the latest wordpress version v5.3 and have not found any issues. Please feel free to contact me directly at dbegunoff at gmail dot com and i can try to help further.
Side note …
We published this plugin what seems like ages ago, since … we have iterated over several versions “internally” (e.g. NOT RELEASED), you can have a look at what the plugin looks like now, here is an excellent example https://www.mist.com/resources/ (as of 2019-12-09) which is significantly different. You are welcomed to give this new version a try, better to use it on a new installation going forward.
Forum: Plugins
In reply to: [Nooz] German translation@trafficlab thank you for taking the time to translate. I will get this setup in the next update to Nooz.
Please send to dbegunoff at gmail dot com
Forum: Plugins
In reply to: [Nooz] Dimensions of Featured Imagehttps://ratiobuddy.com, is a great little tool I use often …
Forum: Plugins
In reply to: [Nooz] Dimensions of Featured ImageIn the majority of our client work we use and recommend a 16×9 ratio (1920×1080, 1280×720, 960×540). We find that it works very well.
The two ratios that we try to stick to is 16×9 and 1×1 (square), this allows us to reuse imagery where possible.
Forum: Plugins
In reply to: [Nooz] Shortcode [nooz-release count=”*”] not working@tober1, thanks for the bug report.
Indeed a bug. I’ve fixed the issue in version 1.4.3
Please review and let me know if that works for you.
Fixed in version 1.4.3
Forum: Plugins
In reply to: [Nooz] What and how do groups work?@thomasvalera, let me know if you have any more questions?
Forum: Plugins
In reply to: [Nooz] Error when updating plugin@ruralinfo, please let me know if you’ve had any further issues?
Forum: Plugins
In reply to: [Nooz] Permalink troublesClosing this issue, however, please feel free to reopen if you need further assistance.
@onetechway, glad its working as expected.
Again, thank you for the report. I will move to get this issue resolved shortly.
Definitely a bug. I will get this fixed right away.
can you try the following for now:
[nooz view="auto" use_pagination="yes"]Hi @onetechway,
Sorry for your troubles, lets see if I can figure this out.
When I go to the page above, there seems to be an issue with page redirection, I get bounced from:
/press-releases/to/latest-news/to/press-releases-2/and repeat …Do you get this same behavior?
- This reply was modified 6 years, 10 months ago by farinspace.
Forum: Plugins
In reply to: [Nooz] Appearance customization via CSSThe custom CSS section can be difficult to manage a lot of CSS rules.
Another option is to create a
custom.css(you can name it what ever you want), and use it directly on the site. This will allow you to manage all your rules from a single file and make it easier to edit.Here is a quick example on setting that up (this requires that you have the ability to upload changes to you
custom.cssfile when you make edits, and that you can modify yourfunctions.phpfile):1) In your theme folder create a
custom.cssfile:
/wp-content/themes/mytheme/custom.css2) In your
/wp-content/themes/mytheme/functions.phpfile add:add_action( 'wp_enqueue_scripts', 'my_custom_styles' ); function my_custom_styles() { $file = 'custom.css'; $handle = 'my-custom'; $src = get_stylesheet_directory_uri() . '/' . $file; $deps = array(); $ver = @filemtime( get_stylesheet_directory() . '/' . $file ); // https://developer.wordpress.org/reference/functions/wp_enqueue_style/ wp_enqueue_style( $handle, $src, $deps, $ver ); }Forum: Plugins
In reply to: [Nooz] Appearance customization via CSSMy apologies for the very late reply.
I’ve created a quick snippet with some sample CSS that may help with your CSS config.
As of current v1.4.2, Nooz still requires config via CSS, you can view HTML source to see the available CSS classes that can be used.
https://gitlab.com/snippets/1886017
As for the columns, Nooz Outline theme will grow to the amount of space it is given. In your example page above, it has a container of
col-md-8, changing this tocol-md-10should do the trick.Forum: Plugins
In reply to: [Nooz] Dequeue nooz-basic-css style from unwanted pagesThe following should work to remove css/js from non-nooz pages. You will have to adjust the array for pages where the
[nooz]shortcode is being used.add_action ( 'wp_enqueue_scripts', 'unload_nooz_plugin_scripts', 11 ); function unload_nooz_plugin_scripts() { global $post; $is_release_post_type = 'nooz_release' == get_post_type(); $is_news_page = isset( $post->post_name ) && in_array( $post->post_name, array( 'news', 'news/press-releases' ) ); if ( ! $is_release_post_type && ! $is_news_page ) { wp_dequeue_style( 'nooz-basic' ); // basic theme css (no js for basic theme) wp_dequeue_style( 'nooz-outline' ); // outline theme css wp_dequeue_script( 'nooz-outline' ); // outline theme js } }Again thanks for the insight, you have brought up a good point about not loading nooz css/js on pages where they are not needed. The detection of the
[nooz]shortcode could be tricky .. but I will add this to the TODO list for inclusion as core functionality to Nooz.