GetSimple Support Forum
News Manager - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13)
+--- Thread: News Manager (/showthread.php?tid=1056)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26


News Manager - Suikerklontje - 2011-12-10

mantra Wrote:thanks for getting back, but did a search through the entire news manager folder for $limit and it didn;t fid it in any files

any idea where it should be?

I'm sorry, i was confused with some other plugin!

You must look in your cms admin panel:

PAGES -> make a choucie on the right side for NEWS MANAGER
Now make the choice for SETTINGS in the top of the screen and change the number in "Number of recent posts (in sidebar):" that must work!


News Manager - mantra - 2011-12-10

Hey thanks

yes, it was really obvious...my head is just gone from too much staring at code and css all day

thanks again


News Manager - QuestarDean - 2011-12-12

Hi. I have been using this plug-in recently and found it really cool and easy to use, both from a designer and clients perspective... I have had to make small tweaks to the php here and there to get things working how I need it, however, one thing I can't get to work is getting the 'nm_list_recent' tag to pull in the excerpt's of the news stories... I know on a so callled 'Latest News' page, this will work simply by replacing the page's content, but I would like a small box on the front page showing Title, Excerpt and a Read More link...

Anyone who has managed this before, I would appreciate your help...


News Manager - aurumix - 2011-12-13

Please, explain me how can I place "read more" link after the article teaser?
The mikeh's method doesn't work for me...
GetSimple v 3.0, News Manager v. 2.2.4

The problem is solved


News Manager - Oleg06 - 2011-12-14

why when encoding UTP-8 in the archives for the month shows signs ?,
[Image: 11111.jpg]

but when encoding windows-1251 month shows normal

[Image: 2222222.jpg]


News Manager - grs84pl - 2011-12-15

does anyone knows why when i click "like it" (using share 3+ plugin). facebook & google "like" site with list of news ?
Example.
site.com/news/article-that-i-wonna-share (i click share button)
site.com/news/ - this page visible on my facebook wall

same thing is with +1

can anyone help me ?


News Manager - mantra - 2011-12-16

QuestarDean Wrote:Hi. I have been using this plug-in recently and found it really cool and easy to use, both from a designer and clients perspective... I have had to make small tweaks to the php here and there to get things working how I need it, however, one thing I can't get to work is getting the 'nm_list_recent' tag to pull in the excerpt's of the news stories... I know on a so callled 'Latest News' page, this will work simply by replacing the page's content, but I would like a small box on the front page showing Title, Excerpt and a Read More link...

Anyone who has managed this before, I would appreciate your help...

Hi

I just added this line into my homepage:

<?php nm_list_recent(); ?>

that gets the titles, I also want to include an excerpt but haven't had time to look at that yet, if you figure it out give me a shout


News Manager - dey - 2011-12-29

mantra Wrote:I just added this line into my homepage:

<?php nm_list_recent(); ?>

that gets the titles, I also want to include an excerpt but haven't had time to look at that yet, if you figure it out give me a shout

It's really simple:
1. check 1st page of this therad, you'll find possible settings
2. specify the page where you want to get the excerpts listed and define output as excerpts and excerpts length. That't it.

@roog
Do you have a changes history?

bydey


News Manager - bencharp - 2011-12-30

I encountered a small problem with the plugin News Manager on the display of dates in French.
Accented characters are not taken into account on a monthly ...
so I slightly modified the function nm_get_date:

the line :
Code:
setlocale(LC_TIME, $NMLANG);
by :
Code:
setlocale(LC_TIME, $NMLANG.'.utf-8');

the complete function :
Code:
/*******************************************************
* @function nm_get_date
* @param $format date format
* @param $timestamp UNIX timestamp
* @return date formatted according to $NNLANG
*/
function nm_get_date($format, $timestamp) {
  global $NMLANG;
  $locale = setlocale(LC_TIME, null);
  setlocale(LC_TIME, $NMLANG.'.utf-8');
  $date = strftime($format, $timestamp);
  setlocale(LC_TIME, $locale);
  return $date;
}

I'm not a php expert, but it solved my problem :-)
Maybe my problem is from an error coding in my theme ?

thank you for your feedback

cordially

benoît


News Manager - mantra - 2012-01-02

Thanks for the reply but it doesn't really help with what I am trying to do.

The excerpt setting only works on the news page. what I am trying to do is include an excerpt on the homepage (which is NOT the newspage) of the site which then clicks through to the news page or story.

I can include the title of the stories on the homepage using this:

<?php nm_list_recent(); ?>

but this only displays the title, when I actually want the title and excerpt.

Any ideas how I can modify that code to do what I want?

Thanks in advance


News Manager - bencharp - 2012-01-02

Hello Mantra,

Why not personalize nm_show_page and nm_show_post?
By duplicating and renaming them in your function.php file, you can customize them at will.

Hoping to have helped

benoît


News Manager - mantra - 2012-01-02

bencharp Wrote:Hello Mantra,

Why not personalize nm_show_page and nm_show_post?
By duplicating and renaming them in your function.php file, you can customize them at will.

Hoping to have helped

benoît


Hi

I found the functions.php file in the newsmanager/inc folder. but I'm lost when it comes to the rest. there is no nm_show_page and nm_show_post in there. I'm not a programmer so most of it means nothing to me I'm afraid.

How could I take one of those settings in the functions.php file and tie it up with the" php nm_list_recent(); " code I am using on the homepage?

Any help you can offer is great, sorry I am not capable of doing it myself, I just draw pictures Smile

Ian


News Manager - bencharp - 2012-01-02

Hi Ian,

The functions of which I speak is from the file inc/site.php and inc/functions.php of News Manager Plugin.

To not change the plugin directly, I chose the option to duplicate in my theme functions.php, all the functions I needed to customize.

In my case, I wanted to display in a sidebar on my homepage a sample of the latest news with a picture.

I've used nm_show_page, nm_show_post (from inc/site.php) and nm_create_excerpt (from inc/functions.php)
I've copied and renamed its in nm_show_sidepage, nm_show_sidepost and nm_create_sideexcerpt in the functions.php of my theme.

You can take a look of my finally code (i've made some just little modification.)


Code:
/*******************************************************
*@function for show news on home side bar
*/

/*******************************************************
* @function nm_show_sidepage
* param $index - page index (pagination)
* @action show posts on news sidepage
*/
function nm_show_sidepage($index=0) {
  global $NMPOSTSPERPAGE, $NMSHOWEXCERPT;
  $posts = nm_get_posts();
  $pages = array_chunk($posts, intval($NMPOSTSPERPAGE), true);
  if (is_numeric($index) && $index >= 0 && $index < sizeof($pages))
    $posts = $pages[$index];
  else
    $posts = array();
  if (!empty($posts)) {
    foreach ($posts as $post)
      nm_show_sidepost($post->slug, $NMSHOWEXCERPT == 'Y');
    if (sizeof($pages) > 1)
      nm_show_navigation($index, sizeof($pages));
  } else {
    echo '<p>' . i18n_r('news_manager/NO_POSTS') . '</p>';
  }
}


/*******************************************************
* @function nm_show_sidepost
* param $slug post slug
* param $excerpt - if TRUE, print only a short summary
* @action show the requested post on front-end news sidepage
*/
function nm_show_sidepost($slug, $excerpt=false) {
  $excerpt = true;
  $file = NMPOSTPATH . "$slug.xml";
  $post = @getXML($file);
  if (!empty($post) && $post->private != 'Y') {
    $url     = nm_get_url('post') . $slug;
    $title   = strip_tags(strip_decode($post->title));
    $date    = nm_get_sidedate(i18n_r('news_manager/DATE_FORMAT'), strtotime($post->date));
    $content = strip_decode($post->content);
    if ($excerpt) $content = nm_create_sideexcerpt($content);
    # print post data ?>
    <section class="nm_post">
      <h3 class="nm_post_title">
        <a href="<?php echo $url; ?>"><?php echo $title; ?></a>
      </h3>
      <p class="nm_post_date"><?php echo i18n_r('news_manager/PUBLISHED') . " $date"; ?></p>
      <div class="nm_post_content">
          <?php echo $content; ?>
          <a href="<?php echo $url; ?>">[...]</a>
      </div>
      <?php
      # print tags, if any
      if (!empty($post->tags)) {
        echo '<p class="nm_post_meta"><b>' . i18n_r('news_manager/TAGS') . ':</b>';
        $tags = explode(',', $post->tags);
        foreach ($tags as $tag) {
          $url = nm_get_url('tag') . $tag;
          echo " <a href=\"$url\">$tag</a>";
        }
        echo '</p>';
      }
      # show "go back" link, if required
      if (strstr($_SERVER['QUERY_STRING'], "post=$slug")) {
        echo '<p class="nm_post_back"><a href="javascript:history.back()">&lt;&lt; ';
        i18n('news_manager/GO_BACK');
        echo '</a></p>';
      }
      ?>
    </section>
    <?php
  } else {
    echo '<p>' . i18n_r('news_manager/NOT_EXIST') . '</p>';
  }
}



/*******************************************************
* @function nm_create_sideexcerpt
* @param $content the post content
* @return a truncated version of the post content
*/
function nm_create_sideexcerpt($content) {
  global $NMEXCERPTLENGTH;
  $len = intval($NMEXCERPTLENGTH);
  $content = $content;
  if (strlen($content) > $len) {
    if (function_exists('mb_substr'))
      $content = mb_substr($content, 0, $len);
    else
      $content = substr($content, 0, $len);
  }
  return "<p>$content</p>";
}

In my homepage.php I've add this :

Code:
<aside id="sidebar">
    <article id="news">
        <h1>En ce moment…</h1>

        <?php nm_show_sidepage(); ?>

    </article>
</aside>

And that's all

I'm not a programmer to…
and my english is not my cup of tea ;-)

Hoping to have helped


benoît


News Manager - mantra - 2012-01-02

bencharp Wrote:Hi Ian,

The functions of which I speak is from the file inc/site.php and inc/functions.php of News Manager Plugin.

To not change the plugin directly, I chose the option to duplicate in my theme functions.php, all the functions I needed to customize.

In my case, I wanted to display in a sidebar on my homepage a sample of the latest news with a picture.

I've used nm_show_page, nm_show_post (from inc/site.php) and nm_create_excerpt (from inc/functions.php)
I've copied and renamed its in nm_show_sidepage, nm_show_sidepost and nm_create_sideexcerpt in the functions.php of my theme.

You can take a look of my finally code (i've made some just little modification.)


Code:
/*******************************************************
*@function for show news on home side bar
*/

/*******************************************************
* @function nm_show_sidepage
* param $index - page index (pagination)
* @action show posts on news sidepage
*/
function nm_show_sidepage($index=0) {
  global $NMPOSTSPERPAGE, $NMSHOWEXCERPT;
  $posts = nm_get_posts();
  $pages = array_chunk($posts, intval($NMPOSTSPERPAGE), true);
  if (is_numeric($index) && $index >= 0 && $index < sizeof($pages))
    $posts = $pages[$index];
  else
    $posts = array();
  if (!empty($posts)) {
    foreach ($posts as $post)
      nm_show_sidepost($post->slug, $NMSHOWEXCERPT == 'Y');
    if (sizeof($pages) > 1)
      nm_show_navigation($index, sizeof($pages));
  } else {
    echo '<p>' . i18n_r('news_manager/NO_POSTS') . '</p>';
  }
}


/*******************************************************
* @function nm_show_sidepost
* param $slug post slug
* param $excerpt - if TRUE, print only a short summary
* @action show the requested post on front-end news sidepage
*/
function nm_show_sidepost($slug, $excerpt=false) {
  $excerpt = true;
  $file = NMPOSTPATH . "$slug.xml";
  $post = @getXML($file);
  if (!empty($post) && $post->private != 'Y') {
    $url     = nm_get_url('post') . $slug;
    $title   = strip_tags(strip_decode($post->title));
    $date    = nm_get_sidedate(i18n_r('news_manager/DATE_FORMAT'), strtotime($post->date));
    $content = strip_decode($post->content);
    if ($excerpt) $content = nm_create_sideexcerpt($content);
    # print post data ?>
    <section class="nm_post">
      <h3 class="nm_post_title">
        <a href="<?php echo $url; ?>"><?php echo $title; ?></a>
      </h3>
      <p class="nm_post_date"><?php echo i18n_r('news_manager/PUBLISHED') . " $date"; ?></p>
      <div class="nm_post_content">
          <?php echo $content; ?>
          <a href="<?php echo $url; ?>">[...]</a>
      </div>
      <?php
      # print tags, if any
      if (!empty($post->tags)) {
        echo '<p class="nm_post_meta"><b>' . i18n_r('news_manager/TAGS') . ':</b>';
        $tags = explode(',', $post->tags);
        foreach ($tags as $tag) {
          $url = nm_get_url('tag') . $tag;
          echo " <a href=\"$url\">$tag</a>";
        }
        echo '</p>';
      }
      # show "go back" link, if required
      if (strstr($_SERVER['QUERY_STRING'], "post=$slug")) {
        echo '<p class="nm_post_back"><a href="javascript:history.back()">&lt;&lt; ';
        i18n('news_manager/GO_BACK');
        echo '</a></p>';
      }
      ?>
    </section>
    <?php
  } else {
    echo '<p>' . i18n_r('news_manager/NOT_EXIST') . '</p>';
  }
}



/*******************************************************
* @function nm_create_sideexcerpt
* @param $content the post content
* @return a truncated version of the post content
*/
function nm_create_sideexcerpt($content) {
  global $NMEXCERPTLENGTH;
  $len = intval($NMEXCERPTLENGTH);
  $content = $content;
  if (strlen($content) > $len) {
    if (function_exists('mb_substr'))
      $content = mb_substr($content, 0, $len);
    else
      $content = substr($content, 0, $len);
  }
  return "<p>$content</p>";
}

In my homepage.php I've add this :

Code:
<aside id="sidebar">
    <article id="news">
        <h1>En ce moment…</h1>

        <?php nm_show_sidepage(); ?>

    </article>
</aside>

And that's all

I'm not a programmer to…
and my english is not my cup of tea ;-)

Hoping to have helped


benoît

Hey Benoit

thanks a lot for this, I'll give it a go! your coding and foreign language skills are obviously better than mine Smile

Ian


News Manager - mantra - 2012-01-03

bencharp Wrote:Hi Ian,

The functions of which I speak is from the file inc/site.php and inc/functions.php of News Manager Plugin.

To not change the plugin directly, I chose the option to duplicate in my theme functions.php, all the functions I needed to customize.

In my case, I wanted to display in a sidebar on my homepage a sample of the latest news with a picture.

I've used nm_show_page, nm_show_post (from inc/site.php) and nm_create_excerpt (from inc/functions.php)
I've copied and renamed its in nm_show_sidepage, nm_show_sidepost and nm_create_sideexcerpt in the functions.php of my theme.

You can take a look of my finally code (i've made some just little modification.)


Code:
/*******************************************************
*@function for show news on home side bar
*/

/*******************************************************
* @function nm_show_sidepage
* param $index - page index (pagination)
* @action show posts on news sidepage
*/
function nm_show_sidepage($index=0) {
  global $NMPOSTSPERPAGE, $NMSHOWEXCERPT;
  $posts = nm_get_posts();
  $pages = array_chunk($posts, intval($NMPOSTSPERPAGE), true);
  if (is_numeric($index) && $index >= 0 && $index < sizeof($pages))
    $posts = $pages[$index];
  else
    $posts = array();
  if (!empty($posts)) {
    foreach ($posts as $post)
      nm_show_sidepost($post->slug, $NMSHOWEXCERPT == 'Y');
    if (sizeof($pages) > 1)
      nm_show_navigation($index, sizeof($pages));
  } else {
    echo '<p>' . i18n_r('news_manager/NO_POSTS') . '</p>';
  }
}


/*******************************************************
* @function nm_show_sidepost
* param $slug post slug
* param $excerpt - if TRUE, print only a short summary
* @action show the requested post on front-end news sidepage
*/
function nm_show_sidepost($slug, $excerpt=false) {
  $excerpt = true;
  $file = NMPOSTPATH . "$slug.xml";
  $post = @getXML($file);
  if (!empty($post) && $post->private != 'Y') {
    $url     = nm_get_url('post') . $slug;
    $title   = strip_tags(strip_decode($post->title));
    $date    = nm_get_sidedate(i18n_r('news_manager/DATE_FORMAT'), strtotime($post->date));
    $content = strip_decode($post->content);
    if ($excerpt) $content = nm_create_sideexcerpt($content);
    # print post data ?>
    <section class="nm_post">
      <h3 class="nm_post_title">
        <a href="<?php echo $url; ?>"><?php echo $title; ?></a>
      </h3>
      <p class="nm_post_date"><?php echo i18n_r('news_manager/PUBLISHED') . " $date"; ?></p>
      <div class="nm_post_content">
          <?php echo $content; ?>
          <a href="<?php echo $url; ?>">[...]</a>
      </div>
      <?php
      # print tags, if any
      if (!empty($post->tags)) {
        echo '<p class="nm_post_meta"><b>' . i18n_r('news_manager/TAGS') . ':</b>';
        $tags = explode(',', $post->tags);
        foreach ($tags as $tag) {
          $url = nm_get_url('tag') . $tag;
          echo " <a href=\"$url\">$tag</a>";
        }
        echo '</p>';
      }
      # show "go back" link, if required
      if (strstr($_SERVER['QUERY_STRING'], "post=$slug")) {
        echo '<p class="nm_post_back"><a href="javascript:history.back()">&lt;&lt; ';
        i18n('news_manager/GO_BACK');
        echo '</a></p>';
      }
      ?>
    </section>
    <?php
  } else {
    echo '<p>' . i18n_r('news_manager/NOT_EXIST') . '</p>';
  }
}



/*******************************************************
* @function nm_create_sideexcerpt
* @param $content the post content
* @return a truncated version of the post content
*/
function nm_create_sideexcerpt($content) {
  global $NMEXCERPTLENGTH;
  $len = intval($NMEXCERPTLENGTH);
  $content = $content;
  if (strlen($content) > $len) {
    if (function_exists('mb_substr'))
      $content = mb_substr($content, 0, $len);
    else
      $content = substr($content, 0, $len);
  }
  return "<p>$content</p>";
}

In my homepage.php I've add this :

Code:
<aside id="sidebar">
    <article id="news">
        <h1>En ce moment…</h1>

        <?php nm_show_sidepage(); ?>

    </article>
</aside>

And that's all

I'm not a programmer to…
and my english is not my cup of tea ;-)

Hoping to have helped


benoît


Hi, I couldn't get it working. I posted your code into innovation/functions.php

then I added <?php nm_show_sidepage(); ?> into my homepage but on testing it threw some error: it didn't appear and then cut off any stuff after that tag.

maybe I'm adding the code in the wrong place...or I'm missing something else, the backend settings maybe?

I appreciate your help in this

cheers

Ian


News Manager - SG - 2012-01-03

Hi, anyone knows how to make the excerpt doesn't cut by letter ?
Code:
apple pie i...

I need it to cut by word, so it's still readable
Code:
apple pie is...



News Manager - mantra - 2012-01-06

Hi Benoit

I can't get it to work. Are you interested in fixing it for me if I send you the login. Paid of course!

cheers

Ian

bencharp Wrote:Hi Ian,

The functions of which I speak is from the file inc/site.php and inc/functions.php of News Manager Plugin.

To not change the plugin directly, I chose the option to duplicate in my theme functions.php, all the functions I needed to customize.

In my case, I wanted to display in a sidebar on my homepage a sample of the latest news with a picture.

I've used nm_show_page, nm_show_post (from inc/site.php) and nm_create_excerpt (from inc/functions.php)
I've copied and renamed its in nm_show_sidepage, nm_show_sidepost and nm_create_sideexcerpt in the functions.php of my theme.

You can take a look of my finally code (i've made some just little modification.)


Code:
/*******************************************************
*@function for show news on home side bar
*/

/*******************************************************
* @function nm_show_sidepage
* param $index - page index (pagination)
* @action show posts on news sidepage
*/
function nm_show_sidepage($index=0) {
  global $NMPOSTSPERPAGE, $NMSHOWEXCERPT;
  $posts = nm_get_posts();
  $pages = array_chunk($posts, intval($NMPOSTSPERPAGE), true);
  if (is_numeric($index) && $index >= 0 && $index < sizeof($pages))
    $posts = $pages[$index];
  else
    $posts = array();
  if (!empty($posts)) {
    foreach ($posts as $post)
      nm_show_sidepost($post->slug, $NMSHOWEXCERPT == 'Y');
    if (sizeof($pages) > 1)
      nm_show_navigation($index, sizeof($pages));
  } else {
    echo '<p>' . i18n_r('news_manager/NO_POSTS') . '</p>';
  }
}


/*******************************************************
* @function nm_show_sidepost
* param $slug post slug
* param $excerpt - if TRUE, print only a short summary
* @action show the requested post on front-end news sidepage
*/
function nm_show_sidepost($slug, $excerpt=false) {
  $excerpt = true;
  $file = NMPOSTPATH . "$slug.xml";
  $post = @getXML($file);
  if (!empty($post) && $post->private != 'Y') {
    $url     = nm_get_url('post') . $slug;
    $title   = strip_tags(strip_decode($post->title));
    $date    = nm_get_sidedate(i18n_r('news_manager/DATE_FORMAT'), strtotime($post->date));
    $content = strip_decode($post->content);
    if ($excerpt) $content = nm_create_sideexcerpt($content);
    # print post data ?>
    <section class="nm_post">
      <h3 class="nm_post_title">
        <a href="<?php echo $url; ?>"><?php echo $title; ?></a>
      </h3>
      <p class="nm_post_date"><?php echo i18n_r('news_manager/PUBLISHED') . " $date"; ?></p>
      <div class="nm_post_content">
          <?php echo $content; ?>
          <a href="<?php echo $url; ?>">[...]</a>
      </div>
      <?php
      # print tags, if any
      if (!empty($post->tags)) {
        echo '<p class="nm_post_meta"><b>' . i18n_r('news_manager/TAGS') . ':</b>';
        $tags = explode(',', $post->tags);
        foreach ($tags as $tag) {
          $url = nm_get_url('tag') . $tag;
          echo " <a href=\"$url\">$tag</a>";
        }
        echo '</p>';
      }
      # show "go back" link, if required
      if (strstr($_SERVER['QUERY_STRING'], "post=$slug")) {
        echo '<p class="nm_post_back"><a href="javascript:history.back()">&lt;&lt; ';
        i18n('news_manager/GO_BACK');
        echo '</a></p>';
      }
      ?>
    </section>
    <?php
  } else {
    echo '<p>' . i18n_r('news_manager/NOT_EXIST') . '</p>';
  }
}



/*******************************************************
* @function nm_create_sideexcerpt
* @param $content the post content
* @return a truncated version of the post content
*/
function nm_create_sideexcerpt($content) {
  global $NMEXCERPTLENGTH;
  $len = intval($NMEXCERPTLENGTH);
  $content = $content;
  if (strlen($content) > $len) {
    if (function_exists('mb_substr'))
      $content = mb_substr($content, 0, $len);
    else
      $content = substr($content, 0, $len);
  }
  return "<p>$content</p>";
}

In my homepage.php I've add this :

Code:
<aside id="sidebar">
    <article id="news">
        <h1>En ce moment…</h1>

        <?php nm_show_sidepage(); ?>

    </article>
</aside>

And that's all

I'm not a programmer to…
and my english is not my cup of tea ;-)

Hoping to have helped


benoît



News Manager - dey - 2012-01-06

mantra Wrote:I can't get it to work.

Hi Ian,

I'm not sure what you're looking for exactly.
Check my start page.
Then check .txt, this is the output of news as excerpts specified in the specification of News Manager.
If youl like the looking of my start page just check the news/ article "How this Getsimple page works" and read the section News manager. If you copy the php code to your template.php it should work fine.
It's not excerpts on startpage but this output you could limit with CSS.

Also cheers

bydey


News Manager - mantra - 2012-01-06

Hi Dey

thanks for this, but your homepage and news pages are the same template. My homepage has a different layout to the news page so it wouldn't work

thanks anyway

Ian

dey Wrote:
mantra Wrote:I can't get it to work.

Hi Ian,

I'm not sure what you're looking for exactly.
Check my start page.
Then check .txt, this is the output of news as excerpts specified in the specification of News Manager.
If youl like the looking of my start page just check the news/ article "How this Getsimple page works" and read the section News manager. If you copy the php code to your template.php it should work fine.
It's not excerpts on startpage but this output you could limit with CSS.

Also cheers

bydey



News Manager - bencharp - 2012-01-06

Hi Ian,

I'm not sure of my competencies but I can take a look for try to fix the problem.

cheers

benoît


mantra Wrote:Hi Benoit

I can't get it to work. Are you interested in fixing it for me if I send you the login. Paid of course!

cheers

Ian



News Manager - dey - 2012-01-07

mantra Wrote:Hi Dey

thanks for this, but your homepage and news pages are the same template. My homepage has a different layout to the news page so it wouldn't work

thanks anyway

Ian

I'm not sure why you think it is anyhow related to layout or template.php.
You can put the php whereevr you like.
Eveninto the content if you use exec-php or dynpages.
May be you place a link to your hp/ problem to make us understanding!?

bydey


News Manager - evmunro - 2012-01-07

Hey, I have a problem. I'm running the latest v of Getsimple, and latest v of the Plugin. Whenever I try to edit or create a new article, the text field for the title shows up, but not for the body. I tried reinstalling everything, and then restored my backed up posts, and after I logged out and back in, again the body text field was gone D:

What to do? :/


News Manager - Connie - 2012-01-07

which latest version? 3.1Beta or 3.0?

is WYSIWYG-Editor activated or not?
Can you write Pages?

what is the result of the server health Check?


News Manager - El-Cherubin - 2012-01-09

Hello,

I'm testing your plugin and it's really great! However, i have a little request, do you think it could be possible to linked it with the multi-user plugin?
For the moment if we allowed new users to post, they have the possibility to modify settings of your plugin, setting of rss add on...

Maybe it's possible to add a new menu between page and files? dedicated to news manager.

I'm not a developer maybe the solution could come from an adaptation of the multi-user plugin Smile

thanks


News Manager - mantra - 2012-01-10

Hi Benoit

I Private Messaged you the login details. Did you get them?

Ian

bencharp Wrote:Hi Ian,

I'm not sure of my competencies but I can take a look for try to fix the problem.

cheers

benoît


mantra Wrote:Hi Benoit

I can't get it to work. Are you interested in fixing it for me if I send you the login. Paid of course!

cheers

Ian