Hi James,
Use this code to add the cat above reviews.
add_action('geodir_before_review_list', 'custom_geodir_before_review_list');
function custom_geodir_before_review_list() {
global $preview, $post;
if (!$preview) {
$post_type = $post->post_type;
$post_tax = $post_type . "category";
$post_cats = $post->{$post_tax};
} else {
$post_type = $post->listing_type;
$post_tax = $post_type . "category";
$post_cats = isset($post->post_category) ? $post->post_category[$post_tax] : $post->{$post_tax};
}
if (is_array($post_cats)) {
$post_cats = implode(',', $post_cats);
}
$cats_arr = array_filter(explode(",", $post_cats));
$cat_icons = geodir_get_term_icon();
$cat_links = '<div class="sd-detail-cat-links"><ul>';
foreach ($cats_arr as $cat) {
$term_arr = get_term($cat, $post_tax);
$term_icon = isset($cat_icons[$cat]) ? $cat_icons[$cat] : '';
$term_url = get_term_link(intval($cat), $post_tax);
$cat_links .= '<li><a href="' . esc_url($term_url) . '"><img src="' . esc_url($term_icon) . '">';
$cat_links .= '<span class="cat-link">' . esc_attr($term_arr->name) . '</span>';
$cat_links .= '</a></li>';
}
$cat_links .= '</ul></div> <!-- sd-detail-cat-links end --> </div> <!-- sd-detail-info end -->';
echo apply_filters('sd_details_output_cat_links',$cat_links);
}
Use this CSS to hide default cat section
.sd-detail-details .sd-detail-cat-links { display:none; }