Advanced Module Manager paid version supports FLEXIcontent with graphical parameters (this is the most easy alternative for non-experienced users)
or
via PHP evaluation too:
e.g. FLEXIContent item view for items in categories 34, 56, 78
1
2
3
4
5
|
return (
JRequest::getCmd( 'option' ) == 'flexicontent'
&& in_array(JRequest::getCmd( 'view' ), array('item','items'))
&& in_array(JRequest::getInt( 'cid' ), array(34, 56, 78))
);
|
e.g. FLEXIContent category view for categories 34, 56, 78
1
2
3
4
5
|
return (
JRequest::getCmd( 'option' ) == 'flexicontent'
&& JRequest::getCmd( 'view' ) == 'category'
&& in_array(JRequest::getInt( 'cid' ), array(34, 56, 78))
);
|
e.g. in ALL FLEXIContent tags view
1
2
3
4
|
return (
JRequest::getCmd( 'option' ) == 'flexicontent'
&& JRequest::getCmd( 'view' ) == 'tags'
);
|
e.g. in FLEXIContent tags view
1
2
3
4
|
return (
JRequest::getCmd( 'option' ) == 'flexicontent'
&& JRequest::getCmd( 'view' ) == 'favourites'
);
|
-- Also please read:
Hiding / Showing FLEXIcontent modules