Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Latest news in centerpanel

Asked Modified Viewed 3,015 times
K
Ken
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
  • Started this discussions
asked
Senior Member

Hi all. Wondering if anyone could help make a centerpanel that shows only the latest news (only 1 news). I want to have this panel alone a bit higher on the site, and the other news in the original panel.
0 replies

3 posts

C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

OK Ken,

Here are some choices for you.

[Basic Center News Panel & Page]

[Extended News Page]

Or here is a Latest News Panel...

Paste this in a new panel (Admin >>> System >>> Panels.

[syntaxhighlighter brush=php,first-line=1,highlight=0,collapse=false,html-script=false]//Latest News
openside("Latest News"wink;
$result = dbquery("SELECT * FROM ".DB_NEWS." WHERE ".groupaccess('news_visibility'wink." ORDER BY news_datestamp DESC LIMIT 0,5"wink;
if (dbrows($result) != 0) {
while ($data = dbarray($result)) {

$itemsubject = trimlink($data['news_subject'], 100);
echo "".THEME_BULLET." <a href='".BASEDIR."news.php?readmore=".$data['news_id']."' title='".$data['news_subject']."' class='side'>$itemsubject</a><br>\n";
}
} else {
echo "<span class='' style='text-align:center;'>There is no news in this cat</span>\n";
}
closeside();[/syntaxhighlighter]

change DESC LIMIT 0,5 to 1

Hope this helps...

If you want to do it like I have on the home.php on fangree.co.uk let me know.
0 replies
K
Ken
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
  • Started this discussions
answered
Senior Member

Thanks mate :)
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Your Welcome man. ;)
0 replies

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

K
K
Ken 10
No Support by PM. Please use the forum.
  • Senior Member, joined since
  • Contributed 713 posts on the community forums.
  • Started 43 threads in the forums
  • Started this discussions
C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet