Moving the category link on the Place Detail page

This topic contains 1 reply, has 2 voices, and was last updated by  Giri 7 years, 10 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #382304

    James Gird
    Expired Member
    Post count: 33

    Hi

    How do you move the category details section (all under <div class=”sd-detail-cat-links”> ) from the default location above the main listing content to below the main content just above the reviews?

    I’m using the Supreme directory theme.

    I’m kinda lost here. I’m converting our geotheme site to geodirectory.
    In geotheme I had a child theme where I just edited the place_detail file, but with geodirectory I don’t know where to start and when to use templates and when to use hooks, actions or filders.

    #382445

    Giri
    Expired Member
    Post count: 3155

    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; }
Viewing 2 posts - 1 through 2 (of 2 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount