file update
This commit is contained in:
parent
f04bc5ad4f
commit
5ba867f09a
|
@ -30,7 +30,7 @@ if (!function_exists('mep_ev_location_cart')) {
|
|||
}
|
||||
|
||||
$location_arr = [$location, $street, $city, $state, $zip, $country];
|
||||
echo esc_html(implode(',', array_filter($location_arr)));
|
||||
echo esc_html(implode(', ', array_filter($location_arr)));
|
||||
|
||||
$content = ob_get_clean();
|
||||
|
||||
|
@ -74,7 +74,7 @@ if (!function_exists('mep_ev_location_ticket')) {
|
|||
|
||||
|
||||
$location_arr = [$location, $street, $city, $state, $zip, $country];
|
||||
echo esc_html(implode(',', array_filter($location_arr)));
|
||||
echo esc_html(implode(', ', array_filter($location_arr)));
|
||||
$content = ob_get_clean();
|
||||
$address_arr = array(
|
||||
'location' => $location,
|
||||
|
@ -116,7 +116,7 @@ if (!function_exists('mep_ev_location')) {
|
|||
|
||||
|
||||
$location_arr = [$location, $street, $city, $state, $zip, $country];
|
||||
echo esc_html(implode(',', array_filter($location_arr)));
|
||||
echo esc_html(implode(', ', array_filter($location_arr)));
|
||||
$content = ob_get_clean();
|
||||
$address_arr = array(
|
||||
'location' => $location,
|
||||
|
|
Loading…
Reference in New Issue