Quote:
Originally Posted by coolgus
Andrew I try to have latest "Show What's New" in joomla. I'm only interested for the titles of links and nothing more. Also I would like to being able to exlude some categories.
Could you tell me which is the query which is needed ? I had a look at ldm_new.module but couldn't find anything
|
you need something like the following:
Code:
select links.linkname as linkname, links.linkdate as linkdate, ltoc.catid as catid
from local_linkslink as links
left join local_linksltoc as ltoc
on links.linkid = ltoc.linkid
where ltoc.catid NOT IN (10,11,12)
order by linkdate desc
replace 10,11,12 by the catids you want to omit