mel47 Posted May 19, 2017 Share Posted May 19, 2017 Hi What's wrong? if ($page->directors) { $content .= "<p>Direction:</p>"; foreach($page->directors as $d) { $content .= "<p>{$d->title}<p>"; } } Directors is a AsmSelect field, which could have a value or be empty. However, even when empty, it always print "Direction:" How come I could avoid it? Thanks Link to comment Share on other sites More sharing options...
tpr Posted May 19, 2017 Share Posted May 19, 2017 if ($page->directors && $page->directors->count()) 2 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now