GetSimple Support Forum
News Manager Extended and Archiving - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: General Questions and Problems (http://get-simple.info/forums/forumdisplay.php?fid=16)
+--- Thread: News Manager Extended and Archiving (/showthread.php?tid=2264)



News Manager Extended and Archiving - gordo - 2011-10-13

I am in the process of building GS for my football website, I am building it on localhost using Xammp. Before I move to being live

The main work of my site is News posting,

I have installed News Manager Extended with works fine for what I want except one thing, I will need an archive feature so people can check back on the news.

What would be the best and hopefully easiest way to go


News Manager Extended and Archiving - yojoe - 2011-10-16

http://get-simple.info/extend/plugin/news-manager/43/
see archive component on the right side on demo page


News Manager Extended and Archiving - Connie - 2011-10-16

gordo,

because of home renovations I was not so active in the last time, and so I also oversaw your question.

Like yojoe pointed out, it is not difficult to do it.

At get-simple.de we have the blogarchive + last news in the sidebar when the blog is active, otherwise only last entries:

Code:
<!-- Nur auf der Blogseite Blogarchiv und letzte Einträge anzeigen, ansonsten Letzte Einträge -->
    <?php

        if (return_page_slug()!='blog') {

            echo '<div class="section">';
            echo '<h2>Letzte Blogbeiträge</h2>';
            nm_list_recent();
            echo '</div>';

        } else {

            echo '<div class="section">';
            echo '<h2>Letzte Blogbeiträge</h2>';
            nm_list_recent();

            echo '</div>';

            echo '<div class="section">';
            echo '<h2>Blog-Archiv</h2>';
            nm_list_archives();
            echo '</div>';

        }

    ?>

the archive is:
Code:
nm_list_archives();



News Manager Extended and Archiving - gordo - 2011-10-17

many thanks

got it working perfectly.. just what I wanted.. why the heck I couldn't work that out. I don't know.

It's like the template, I have changed nothing for the footer but yet after a couple of saves, the footer will not display correctly at all.


As I am testing on localhost I cannot show a link but here is the template file attached.


News Manager Extended and Archiving - mvlcek - 2011-10-17

gordo Wrote:many thanks

got it working perfectly.. just what I wanted.. why the heck I couldn't work that out. I don't know.

It's like the template, I have changed nothing for the footer but yet after a couple of saves, the footer will not display correctly at all.


As I am testing on localhost I cannot show a link but here is the template file attached.

E.g. the last <a> in right footer is closed with a </p>.

You should use a validating editor - e.g. Notepad++ (Menu TextFX/TextFX HTML Tidy - and a tool like the WebDeveloper toolbar for Firefox (Menu Extras(?)/Validate local HTML) to find errors like this easily.


News Manager Extended and Archiving - gordo - 2011-10-17

thanks, I had the start of a dam migraine, which eventually passed off at 3.30am this morning, that often effects my eye sight.

I will be having a look at what you suggest and appreciate the help.