solved Is it possible to exclude modules from the jrCore_list jrAction

Developer Networks
Developer Networks
@developer-networks
8 years ago
566 posts
I have a jrCore_list using the action module. Is it possible in jamroom to exclude modules from returning in the array by excluding by paramaters like this
exclude_modules="jrComments"

updated by @developer-networks: 12/23/16 03:51:29AM
paul
@paul
8 years ago
4,326 posts
Add this search parameter to the jrCore_list call -

{jrCore_list module="jrAction" search="action_module != jrComment" . . . }

If you want to exclude more than just jrComment do it this way =

{jrCore_list module="jrAction" search="action_module NOT IN jrComment,jrAudio,jrVideo" . . . }

hth


--
Paul Asher - JR Developer and System Import Specialist
Developer Networks
Developer Networks
@developer-networks
8 years ago
566 posts
Perfect Thanks!

Tags