(2013-02-26, 01:16:43)dalibor.ilic Wrote: Tried to make it work in a template - just a simple <div> with <?php get_special_field('myfield'); ?> picks up empty value.
... any suggestions (i used proper field naming, no underscores, just lowercase and numbers)?
---- edit -----
In the meantime I have tried making it with custom fields instead of special pages inside the same template - and it works.... strange...
Strange. <?php get_special_field('myfield'); ?> and <?php get_custom_field('myfield'); ?> should both display the field value. There might be problems, if you use a name, which contains dashes or starts with a number. If your field is text (e.g. containing <, & or >) and not HTML, you should use the third parameter in get_special_field, e.g. <?php get_special_field('myfield','',false); ?>.
(2013-02-25, 19:19:46)xxdex Wrote: hello. plugin is working but i have a noob problem (sory about that) i was a search forum and i don't find a solution .. How to display all products from group (specjal pages) in some page in menu ? (with pagination) without a searcher. (i don't want display it as submenu.) it possible. sory about my lang. I'm from poland my english is not very good. And my programmer level is a amateur.
You should use I18N Search for this.
Otherwise you could put all these special pages below another page and limit the navigation depth via the third parameter to get_i18n_navigation (assuming you are using this). Then you could create a component with a get_i18n_navigation call only displaying the special pages and include this component on the desired page using the DynPages plugin. So - quite complex.