33
           
            
                
     
    
    In addition I want only some storytopics appear when selecting a theme.
I tried in modules/news/index.php:
Quote:
if (isset($HTTP_GET_VARS['theme_set'])) {
 $xoopsOption['theme_set'] = intval($HTTP_GET_VARS['theme_set']);
} else {
 $xoopsOption['theme_set'] = Infonet;
}
switch($xoopsOption['theme_set']) {
 case 'Bredervoort': //if it is topic with id 21
 $xoopsConfig['storytopic'] = '21';
 break;
 case 'Commujon': //if it is topic with id 11
 $xoopsConfig['storytopic] = '11';
 break;
 case 'Kionda': //if
 $xoopsConfig['storytopic'] = '15';
 break;
 case 'Nieuw Veldzicht': //if it is topic with id 11
 $xoopsConfig['storytopic'] = '13';
 break;
 case 'Valkenheide': //if it is topic with id 11
 $xoopsConfig['storytopic'] = '10';
 break;
}
I guess I was a little to optimistic. Do I have to put the code in another file? Does the code make any sense? 
I need help with this...