I already have a value set in the where condition field.
(SpotlightStartDateTime <= GetDATE()) AND (SpotlightEndDateTime >= GetDATE())
Can I continue using this one and just add the one you provided?
Example 1 NodeAliasPath LIKE '/About-Us/News-Events/News/%' OR NodeAliasPath LIKE '/About-Us/News-Events/PresidentsMessage/%' (SpotlightStartDateTime <= GetDATE()) AND (SpotlightEndDateTime >= GetDATE())
Example 2 (NodeAliasPath LIKE '/About-Us/News-Events/News/%' AND ((SpotlightStartDateTime <= GetDATE()) AND (SpotlightEndDateTime >= GetDATE()))) OR (NodeAliasPath LIKE '/About-Us/News-Events/PresidentsMessage/%' AND ((SpotlightStartDateTime <= GetDATE()) AND (SpotlightEndDateTime >= GetDATE())))
I am thinking that my example 2 might be the correct one, at least when I tried it, my web part didn't crash. Did I merge the two correctly?