Support

Account

Home Forums Front-end Issues Display Taxonomy field from within Group Reply To: Display Taxonomy field from within Group

  • Whoops! Sorry, I mistook each $director in $team['Directors'] to be an array when each is actually an object. So our solutions are actually the same, except yours is using the proper syntax for a property on an object $director->name, where I was using the syntax for a property on an array $director['name']. I hope my mistake didn’t cost ya too much time, sorry about that.

    I hope that clarifies though why one works now and the other threw an error. Also, your code looks just great, but you don’t need the $commaArray = $director->name; line.

    I’m glad you got it worked out!