If/Else Loops in Templates: Question
Using Jamroom
Yes its possible.
The steps are:
* identify which template it is where you want to change stuff
* use the {debug} in there to see if you can location the variable that contains the value "adjectives". It will be a $_post variable because it comes from the url.
Then add something like this to the template:
{if($_post['whatever-value-you-found-from-debug'] == 'adjectives')}
whatever you want to put just on that page goes here.
{/if}
Use the "Template name in Source" tool from developer tools to find the template you need.
Docs: "Template name in source"
https://www.jamroom.net/the-jamroom-network/documentation/modules/932/developer-tools#template-name-in-source
Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug
If you get stuck we can help.