I want to use the icons to trigger the categories that show on the map. Take a look at how I want it to look here:
af3.c8e.myftpupload.com/
I made the changes to map_functions.php so you could see how I want it to look. However, I dont’ want to make the changes to the core plugin. I want to make the changes in my child theme so it doesn’t break on updates. OR, maybe you can make these changes to map_functions.php if it doesn’t break anything.
In map_functions.php I need to change LINES 206-210:
1. Add an id to the <input>
2. Move the category icon inside the <label>
3. Add “for” to the <label>
BEFORE:
$term_check = '<input type="checkbox" ' . $checked . ' id="' . $cat_term->taxonomy . '" class="group_selector ' . $main_list_class . '"';
$term_check .= ' name="' . $map_canvas_name . '_cat[]" group="catgroup' . $cat_term->term_id . '"';
$term_check .= ' alt="' . $cat_term->taxonomy . '" title="' . esc_attr(ucfirst($cat_term->name)) . '" value="' . $cat_term->term_id . '" onclick="javascript:build_map_ajax_search_param('' . $map_canvas_name . '',false, this)">';
$term_check .= '<img height="15" width="15" alt="" src="' . $icon . '" />name) . '"/>';
$out .= '<li>' . $term_check . '<label>' . ucfirst($cat_term->name) . '</label><i class="fa fa-long-arrow-down"></i>';
AFTER:
$term_check = '<input type="checkbox" ' . $checked . ' id="' . $cat_term->term_id . '" class="group_selector ' . $main_list_class . '"';
$term_check .= ' name="' . $map_canvas_name . '_cat[]" group="catgroup' . $cat_term->term_id . '"';
$term_check .= ' alt="' . $cat_term->taxonomy . '" title="' . esc_attr(ucfirst($cat_term->name)) . '" value="' . $cat_term->term_id . '" onclick="javascript:build_map_ajax_search_param('' . $map_canvas_name . '',false, this)">';
$out .= '<li>' . $term_check . '<label for="' . $cat_term->term_id . '"><img height="15" width="15" alt="" src="' . $icon . '" />name) . '"/>' . ucfirst($cat_term->name) . '</label><i class="fa fa-long-arrow-down"></i>';