Order Posts by Author Links in Edit News Page + Edits

Share your CuteNews.RU skins and code snippets.

Order Posts by Author Links in Edit News Page + Edits

Postby DarkSlim » Mon Mar 08, 2010 3:19 pm

Hi, here is another nice snippet that I came up with just now,
it turns the author names in the edit news page into links,
when you click on an author's name - it will sort the news by
his name and will show you all his latest posts! :)

Pretty useful!

This is how you do it:

Open inc/mod/editnews.mdu

Find:
Code: Select all
$entries .= $my_cat.'<td height="18" '.$bg.'>'.$row['author'].'


Replace
with:
Code: Select all
$entries .= $my_cat.'<td height="18" '.$bg.'><a href="?mod=editnews&author='.$row['author'].'">'.$row['author'].'</a>



Edits
Here are some edits for that page you might
wanna use:

If you want to make the edit new page show more than 21 posts
automaticly just look for:
Code: Select all
  $news_per_page = 21;

And change it to any number you would like. :)


If you have posts with long titles, you might be annoyed if it's
cutting too early so you can't see the rest of the title, here
is how you make it longer (there is a space):

Find:
Code: Select all
if (strlen($row['title']) > 30){
            $row['title'] = substr($row['title'], 0, 26).'...';

Now just change the numbers:
30 - When the number of characters in the title is bigger than that
26 - it will cut the title to have that number of characters

Another great ways to enhance the edit page and make it
easier for us to find posts and stuff!
Last edited by DarkSlim on Sun Mar 14, 2010 2:45 pm, edited 1 time in total.
User avatar
DarkSlim
 
Posts: 298
Joined: Thu Aug 06, 2009 4:18 pm
Location: IL

Postby Hawk » Tue Mar 09, 2010 8:37 am

Great work there! This feature indeed does make things easier if there are multiple article publishers.
User avatar
Hawk
 
Posts: 279
Joined: Tue Aug 29, 2006 9:00 pm

Postby DarkSlim » Sun Mar 14, 2010 2:46 pm

Thanks! I have added another nice edit to that page
to show more of longer titles. :)
User avatar
DarkSlim
 
Posts: 298
Joined: Thu Aug 06, 2009 4:18 pm
Location: IL


Return to Skins and snippets



Who is online

Users browsing this forum: No registered users and 1 guest

cron