jcollsabc wrote: {joodb ifis|field_cost|100|gt|AND|field_cost|lt|200|AND|field_published|true}
stuff
{joodb endif}
currently AND or OR constructions are not possible. To be honest the construction you propose seems to be to complicate and inflexible. What would you do if you have a mixed AND and OR construction like {joodb ifis|field_cost|100|gt|AND|field_cost|lt|200|OR|field_published|true}
Your construction can also be archived like this.
{joodb ifis|field_cost|100|gt}
{joodb ifis|field_cost|200|lt}
{joodb ifis|field_published}
.... output ....
{joodb endif}
{joodb endif}
{joodb endif}
The Output within the three conditions will only display if all conditions are true.
Maybe future versions will have an option for multiple conditions.