farinspace
Forum Replies Created
-
Forum: Plugins
In reply to: [Nooz] Another feature requestThank you for the kind comments. As we continue to build out the plugin, more precise features can and will be added. We have discussed creating a commercial version of the plugin, so do let us know your feature requests.
In the mean while you can add some additional content to all excerpts with the following:
https://gist.github.com/farinspace/c194c1f76fa699b12afef6ac405d9233Forum: Plugins
In reply to: [Nooz] Coverage: Item Link ProblemCurrently there is no way to do this through the UI, however you can use one of the built in hooks to create your own list template:
// functions.php
https://gist.github.com/farinspace/39c8c35acd945575dea1// my_custom_template.php
https://gist.github.com/farinspace/657feb27580e7b2c0222Forum: Plugins
In reply to: [Nooz] add link to download pdf of a release@kais.farhat, great idea .. added to the features list. thanks!
Forum: Plugins
In reply to: [Nooz] Space and colorsUnder the hood you can customize Nooz as much as you want. However there is no current “user interface” for changing colors and spacing.
I would recommend you make adjustments to your CSS. Nooz adds many css classes to the HTML elements so that these elements can be styles accordingly.
Here are some style recommendations:
.nooz-datetime { color: #e5e5e5; display: block; margin-bottom: 5px; } .nooz-item { margin-bottom: 60px; } .nooz-list { list-style:none; margin:0; padding:0; } .blog-post-title-wrapper .nooz-excerpt { line-height: 1.4; }Forum: Plugins
In reply to: [Nooz] Pagination linksIf you need further assistance, I can have a look at your installation, you can contact me at support at mightydigital dot com
Forum: Plugins
In reply to: [Nooz] Press coverage not showing – code not in page sourceNot through the shortcode attributes, however if you are an advanced user, you could use a filter:
function my_query_options( $options ) { // you could use $options['post_type'] to target specific shortcode usage // [nooz type="custom"] // if ( 'custom' == $options['post_type'] ) { ... } $options['post_type'] = array( 'nooz_release', 'nooz_coverage' ); return $options; } add_filter( 'nooz_shortcode_query_options', 'my_query_options' );Forum: Plugins
In reply to: [Nooz] Press coverage not showing – code not in page sourceIdeally, Nooz was able to create default pages during installation, I would recommend that you inspect those page to see the shortcodes that Nooz creates. Additionally have a look at the help tab for Nooz (upper right corner).
Here are the relevant shortcodes:
[nooz] (will default to press release)
[nooz type=”release”]
[nooz type=”coverage”]Forum: Plugins
In reply to: [Nooz] Pagination linksLet me know if you are still having issues .. marking as resolved for now.
Forum: Plugins
In reply to: [Nooz] Remove Bullets in listing / PHP Editingeek, that’s a lot of code … I would suggest you do a view source and take a look at the nooz HTML output. You will notice that all parts of the output have nooz-[name] css classes. I would recommend that you use the css classes to style the different parts of nooz.
Forum: Plugins
In reply to: [Nooz] Press release text not showingHi, it appears as if you’ve got your problem resolved .. let me know if you have any other issues. Equally if you have suggestions for improvements, do not hesitate to let us know.
Forum: Plugins
In reply to: [Nooz] Pagination linksTest the shortcode with:
[nooz type="release" use_pagination="yes"]notice the
use_paginationoption, on the list pages this should already be enabled.If you are still having problems I can have a look at it if you would like: support at mightydigital dot com
Forum: Plugins
In reply to: [Nooz] Pagination linksTry the following an see if it does anything: Go to Settings > Permalink and click “Save Changes”
Forum: Plugins
In reply to: [Nooz] Feature RequestI like that idea, will look into it on our next dev cycle, thanks again 🙂
Forum: Plugins
In reply to: [Nooz] Remove sidebars from press releasesin your css add the following:
body.single-nooz_release #main-content .container::before { display: none; }Your theme must have some custom styles which put the vertical line which separates the sidebar. The above should remove it only from press-release pages.
Forum: Plugins
In reply to: [Nooz] Press coverage not showing – code not in page sourceAfter having a look and troubleshooting: Everything is OK with the plugin, it is working as expected. The issue was with a custom filter in your functions.php
You appear to be using the “nooz_shortcode” filter with a custom php/html template. The template was setup to only handle a flat list of items, however when the list is set to “group”, the template should be modified accordingly along with the data structure. I have made a few notes in your functions.php file and for now disabled the filter.
You can let Nooz output the content for you and simply style it with CSS or you can make PHP adjustments to your custom template file (based off of the data structure).