(2013-09-02, 19:47:37)Rafal Wrote: - I need to show a image in short content, how can I do it?
TeeJay explained how it works in the latest 2.5 betas.
Note that it's a development version, and the way some of the settings are configured is going to change for the next one (by using components instead of gsconfig)
(2013-09-02, 19:47:37)Rafal Wrote: - How can I change a template when full content is view ? (I use NM on my main site where I have a banner and I dont need it when full news is show) .
You cannot currently select different templates for different views of the news page. There may be a way to do it (with a small custom plugin, or some code in your theme's functions.php), but perhaps this may work for you: somewhere in your template,
Code:
<?php if (!nm_post_title("","",false)): ?>
*** Your banner goes here ***
<?php endif; ?>
NM 2.5 will have better conditional functions for this kind of stuff (nm_is_single(), ...)