Not really...i played around with a piece of code i saw on another plugin who has an exclusion option for articles but i had no success. i have no idea:
function onAfterDisplayContent( &$article, &$params, $limitstart ) {
// Retrieve parameters
$excluded_articles = $this->_params->get( 'excludedarticles', '');
$arr_excluded_articles = split(',', $excluded_articles);
// Check for exclusion
if (in_array( $article->id, $arr_excluded_articles )) {
// This article is excluded...
return '';
}
well. i have to wait then. this is the only reason i cannot use this plugin
