farinspace
Forum Replies Created
-
Forum: Plugins
In reply to: [Nooz] Press coverage not showing – code not in page sourceI can troubleshoot and have a look, if you would like .. support at mightydigital dot com
Forum: Plugins
In reply to: [Nooz] Press coverage not showing – code not in page sourceGo to Settings > Permalinks and click “Save Changes” .. this will flush the rewrite rules, see if that has any effect.
Forum: Plugins
In reply to: [Nooz] Using own layouts and formatsOut of the box, what you are asking for is not possible at the moment.
Forum: Plugins
In reply to: [Nooz] Featured Image Missing?I did a quick check and everything looks ok. When viewing a press release/coverage, can you confirm “Feature Image” is checked within the “Screen Options” (upper-right corner of the WP admin area).
I’ll have another look to confirm I am not missing something else myself.
Forum: Plugins
In reply to: [Nooz] Hit activate and it took my site downAdditionally, I would recommend that anyone who is installing a plugin or theme form the WordPress repository, do a test installation first.
You SHOULD have, at minimum, a staging environment to be able to do a pre-flight. This staging environment SHOULD mirror your production environment.
Even the best, most robust plugin/theme may succumb to an improper mixture of other plugins and themes (software).
As developers we do our best to prevent this, but often, issues beyond our control WILL happen. Hence, it is VERY IMPORTANT to have backups and staging environments/servers to mitigate bad things from happening.
Forum: Plugins
In reply to: [Nooz] Hit activate and it took my site downA recap of what happened. After I was kindly given access to FTP (thank you Tara), I was able to do a little debugging, here are my finds:
The first error I found was the following:
Parse error: syntax error, unexpected end of file in /wp-includes/functions.php on line 4994
I think because there were multiple people trying to fix the issue at once, the above file got screwed up somehow. I simply replaced it with a pristine copy of the same version from wordpress.org
The second error I found was the following:
Fatal error: Cannot redeclare class WPAlchemy_MetaBox in /wp-content/themes/delaware/lambda/lambda.meta.box.php on line 54
This one was a bit trickier, let me explain … when the Nooz plugin is activated it also uses a copy of
WPAlchemy_MetaBox. Even though the Nooz plugin first does a check to see if the class has already been loaded, in this case the theme “delaware” was not doing a check itself (hence the error points back to one of the theme files).In either case, this issue helped make the Nooz plugin even more robust, I’ve released version v0.13.0 which will prevents this issue (rare as it may be).
Forum: Plugins
In reply to: [Nooz] Using own layouts and formatsFor others who may stumble upon this thread, the code reference can be found on this topic: Change order of how the press coverage appears
Forum: Plugins
In reply to: [Nooz] Press releases showing up in blogThank you for the login details. My investigation didn’t show any of the release or coverage content in the blog either. Next time you are creating a release or coverage item keep an eye out through the process.
As we continue to work on the plugin to a “feature complete” state, do let us know your thoughts about it:
How you use it?
What issues you may have?
How it can be improved, in your opinion?
Ask your self, I wish it did/had this?Thanks again!
Forum: Plugins
In reply to: [Nooz] Press releases showing up in blogDid this start happening after a particular version of Nooz?
Perhaps the theme is pulling in all post types to display as part of the blog. I’ couldn’t say without look at it in-depth.
If it’s a dev site and you wouldn’t mind allowing me to poke around I can have a look .. contact me at support at mightydigital dot com
Forum: Plugins
In reply to: [Nooz] Change order of how the press coverage appears@annalisa16, here is a example which will get you started:
// functions.php
https://gist.github.com/farinspace/39c8c35acd945575dea1// my_custom_template.php
https://gist.github.com/farinspace/657feb27580e7b2c0222Forum: Plugins
In reply to: [Nooz] Commercial future of NoozYes, we do have plans to create commercial products around Nooz.
Features and functionality that are currently in the Nooz plugin will always be available and will NOT be removed for commercial purposes.
We hope that you find the Nooz plugin useful for your needs, if not, that’s OK as well, it may not be for everyone.
Forum: Plugins
In reply to: [Nooz] Using own layouts and formats@ditto, again we very much appreciate your suggestions and we will always take our end users into consideration.
However we will always do what is right to facilitate our development and a clear upgrade path. At this moment our decision of offering a filter is the best course of action.
Twig is definitely a heavy package, hence at some point it may be changed, and we will not lock ourselves in to supporting it just because.
In this situation a filter is a better solution, broader, allowing more customization for the end user, in fact as you suggest, you can write your own php template very easily with a filter (E.g. including a php file/template and the provided data).
Resolved or not, what you are asking for specifically is unsupported.
Thanks again for your thoughts.
Forum: Plugins
In reply to: [Nooz] Using own layouts and formatsWe just released v0.11.0, which adds a filter that you can use to modify the shortcode output.
add_filter( 'nooz_shortcode', function ( $output, $data ) { return $output; }, 10, 2 );With this filter you get the final HTML
$outputand the$dataassociated with that output.We do not give access to Twig as we consider it internal to the plugin (allowing us to change the templating engine if needed). However, you are free to include Twig on your own and create your own templates using the provided
$data.Hope this helps.
p.s. If you are finding this plugin useful, please consider writing a five star review!
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Setup for NginxYou need the latest development version of W3TC …
http://wordpress.org/extend/plugins/w3-total-cache/download/
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Setup for Nginxditto … I am looking to do the same thing?