Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Trying to Run a if group = “this name”


r-a-y
Keymaster

@r-a-y

This could be a little silly and not even note-worthy but try adding spaces between your equals signs:

<?php if ( ($localPhone == "Manchester") || ($localPhone == "Test Group") ) {

The other thing you could do is try just one condition:

<?php if ( $localPhone == "Manchester") {

and see what happens.

Skip to toolbar