WF-Links is not displaying links in Category Listings. I found the following post and did the following steps with no change for my problem:
https://xoops.org/modules/newbb/viewtopic.php?viewmode=flat&topic_id=42869&forum=28 File: viewcat.php
Description: fix page navigation on link pages.
line 206
========
old : $list_by = "'cid=' . $cid";
new : $list_by = "cid=$cid";
----------------------------------------------------------
File: viewcat.php
Description: pagenav not working in 'Browse links by alphabetical listing'
line 184
========
old : $list_by = "'list=' . $list";
new : $list_by = "list=$list";
----------------------------------------------------------
File: topten.php
Description: Popularity and Rating lists not showing
Solution: typo in line 34, groupid should be pid
lines 34 old
=============
$result = $xoopsDB -> query( "SELECT cid, title, groupid FROM " . $xoopsDB -> prefix( WFLINKS_CAT ) . " WHERE pid=0" );
lines 34 new
=============
$result = $xoopsDB -> query( "SELECT cid, title, pid FROM " . $xoopsDB -> prefix( WFLINKS_CAT ) . " WHERE pid=0" );
Note: In line 46 and 64 of the file viewcat.php the term 'groupid' is used also.
Changing this to 'pid' didn't change anything noticeable.
You can see at the site
http://www.mx96.com/modules/wflinks/ There are 2 Categories and 1 Links listed. Under Popular
http://www.mx96.com/modules/wflinks/topten.php?list=hit or Top Rated you can view the link but not in the Category Listings. I tried
http://www.wf-projects.com but the sites are empty. Are they still around?
Can anybody help me?