Hi Matteo,
Sorry I’ve been out of circulation for a while; Thanks for the work you’ve done for me.
1.
The category top ten is working but not quite as intended

When on the faq index I want it to show a mix of all the categories in the top ten without separating them by headers, (top 10 from all categories, as it was before hack) It does so now but each category is separated by a header. This could create a very long list as more categories are added. I’d like all of these to be a mixed cat top ten at the faq index page level.
But when a user click on a category from the menu (reaching the cat index page) I would then like to show only that categories top10 and the same for all pages under it:
http://www.uvolunteer.org/faqs/index.ph ... show&cat=3
At the moment it only shows category top ten only when you further navigate to an actual faq page:
http://localhost/faqs/index.php?action= ... artlang=en
which is below the category index but not on the index it self.
2.
The rss feeds are not working, I’ve hacked the file as you asked me to and added the appropriate ending to the url when requesting the rss feed
$url = '
http://www.uvolunteer.org/faqs/feed/top ... .php?cat=5';
but nothing happened and it just shows me the feed as normal.
I also tried it with the language:
$url = '
http://www.uvolunteer.org/faqs/feed/top ... =5&lang=en';
But it still does not work.
This is how I’m dealing with the rss feed:
require_once('magpierss/rss_fetch.inc');
$url = '
http://www.uvolunteer.org/faqs/feed/top ... .php&cat=2';
$rss = fetch_rss($url);
echo "<ul>\n";
foreach ($rss->items as $item ) {
$string = $item[title];
$substr = strstr($string, '(');
$arr = split( '\('.$substr, $string );
$substr1 = trim($arr[0]);
$title = $substr1;
$views = $substr;
$url = $item[link];
echo "<li><a href=$url>$title</a><span class=\"views\">$views</span></li>\n";
}
echo "</ul>\n";
?>
I just copied and pasted those function as you instructed
We are nearly there, but not quite yet. Please, I hope I don’t sound ungrateful actually I’m very appreciative of your efforts.
Cheers
Nat