Hi!
yes it is possible, but only with some additional code.
open the file rc_joomla_content_plugin.php (administator/components/com_rafcloud/plugins)
| Code: |
$database->setQuery("SELECT * FROM #__content WHERE state=1");
|
replace with:
| Code: |
$database->setQuery("SELECT * FROM #__content WHERE state=1
AND sectionid NOT IN (0,7,11,44) AND catid NOT IN (0,4,6)");
// excluded sections 7,11,44 and categories 4,6
|
rc_joomla_keywords_plugin.php
| Code: |
$database->setQuery("SELECT metakey FROM #__content WHERE state=1");
|
replace with
| Code: |
$database->setQuery("SELECT metakey FROM #__content WHERE state=1
AND sectionid NOT IN (0,7,11,44) AND catid NOT IN (0,4,6)");
|
Skorp