Hi,
When I want to publish a directory overview using the shortcode
[church_admin type="address-list" member_type_id=1,2,3,5,6 photo=1 map=1 site_id=0]
it will indeed show all the members I want. However I see that there is a small printing issue coming up…
Quite a few names use the prefix on the name, but between the prefix and the last name a space is missing.
I.e. it’s showing “Arjan van denBerg” instead of the correct version “Arjan van den Berg”.
I believe that the next change should be fixing that. In ‘/display/address-list.php’ line 130:
$last_name=esc_html($people->prefix.$people->last_name);
should be changed to
$last_name=esc_html($people->prefix.’ ‘.$people->last_name);
Would this make sense?