× If you expect answers you should describe your problem and give as much information's as possible. (SQL-Structure, Template Code, Joomla Version ...) Please read this before posting: joodb.feenders.de/support.html

elseif

More
10 years 3 days ago #2841 by boerndstone
elseif was created by boerndstone
Good day,

I am using your ifis statement quite a lot. My question is if there is also a possibility to write:
{joodb ifis|price|100|ge}
{joodb elseif ....}
{joodb else}
{joodb endif}

Thank you for your reply

Please Log in to join the conversation.

More
10 years 3 days ago - 10 years 3 days ago #2842 by Dirk
Replied by Dirk on topic elseif

boerndstone wrote: {joodb ifis|price|100|ge}
{joodb elseif ....}
{joodb else}
{joodb endif}


There is no such command like elseif
Even if it would exist it'll be illegal because you open 2 if statements and close only one.
You must stack your conditions.
{joodb ifis|price|100|ge}
	{joodb ifis|price|1000|ge}
		VERY EXPENSIVE
	{joodb else}
		EXPENSIVE
	{joodb endif}
{joodb else}
	{joodb ifis|price|20|le}
		CHEAP
	{joodb else}
		NORMAL
	{joodb endif}
{joodb endif}
Last edit: 10 years 3 days ago by Dirk.

Please Log in to join the conversation.

Moderators: Dirkjoest