Page 1 of 1

LISE - display specific detail page

Posted: Thu Oct 22, 2020 9:31 am
by johnboyuk1
Hi all

I'm trying to use LISE to output a specific entry on a page in detail view... I tried the below hoping it would work but it doesnt! I get a web page that's broken and amongst its all this output: 'missing parameter, this should not happen'

Code: Select all

{LISEResearch action='detail' include_items = '11' }
If I omit the action, and use

Code: Select all

{LISEResearch include_items = '11' }
I get the correct item in summary view... but I need to go straight into the detail view.

Is this a bug or am I doing something wrong?!

Thanks

Re: LISE - display specific detail page

Posted: Thu Oct 22, 2020 2:44 pm
by DIGI3
You want this one:

Code: Select all

 item = <item_alias> - This parameter is only applicable to the detail view. It allows specifying which item to display in detail mode. Must be an item alias.
include_items is for including a list of items in summary view

Re: LISE - display specific detail page

Posted: Thu Oct 22, 2020 3:28 pm
by johnboyuk1
Perfect - thanks!