Why would this IF statement not work? [closed]
You need to use the AND (&&) operator to make this work. As your condition stands, it will return true no matter which page you are on. The OR operator only needs one true to execute where as the AND operator needs all conditions to be true to execute I just have one other concern … Read more