inherit
260524
0
Nov 20, 2022 19:13:14 GMT -8
Ratty Poe
40
February 2020
shoebill
|
Post by Ratty Poe on May 28, 2021 10:31:29 GMT -8
I have this code in my Home: {if $[category.name] == "Redwood Forest"} <div class="title-bar bbcode"><h2><div class="title_wrapper"><div class="citycategory">$[category.display_name]</div></div></h2></div> {else} <div class="title-bar bbcode"><h2><div class="title_wrapper">$[category.display_name]</div></h2></div> {/if} I also want the categories "Mice's Territory" and "Rat's Territory" to have the effect of <div class="citycategory"> , but no matter how hard I try I can't seem to figure this out! Could someone help please? Thank you all! My forum url is rats-that-strike.proboards.com
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on May 28, 2021 10:58:49 GMT -8
I have this code in my Home: {if $[category.name] == "Redwood Forest"} <div class="title-bar bbcode"><h2><div class="title_wrapper"><div class="citycategory">$[category.display_name]</div></div></h2></div> {else} <div class="title-bar bbcode"><h2><div class="title_wrapper">$[category.display_name]</div></h2></div> {/if} I also want the categories "Mice's Territory" and "Rat's Territory" to have the effect of <div class="citycategory"> , but no matter how hard I try I can't seem to figure this out! Could someone help please? Thank you all! My forum url is rats-that-strike.proboards.comTry changing this line: {if $[category.name] == "Redwood Forest"}
to this: {if $[category.name] == "Redwood Forest" || $[category.name] == "Mice's Territory" || $[category.name] == "Rat's Territory}
The double vertical bars, ||, means "or" - so the above is saying: "If the category name is Redwood Forest or Mice's Territory or Rat's Territory ..." If the category name is any of those 3, the code below it will execute. If it is any other name, it will execute the {else} clause code.
|
|
inherit
260524
0
Nov 20, 2022 19:13:14 GMT -8
Ratty Poe
40
February 2020
shoebill
|
Post by Ratty Poe on May 28, 2021 11:15:00 GMT -8
That was perfect, just what I wanted! Thank you so much, and for explaining it!
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on May 28, 2021 14:42:00 GMT -8
Glad I could be of help.
|
|