Detail listing info inside profile tab

This topic contains 1 reply, has 2 voices, and was last updated by  Paolo 8 years, 3 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #69667

    Dev Des
    Buyer
    Post count: 3

    Hi there, is it possible to move the detail page listing info (shows address, phone etc) inside the profile tab?

    #69786

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    with this code in your theme functions.php:

    
    
    
    
    // add details in content area
    add_action('geodir_after_description_on_listing_detail','geodir_detail_page_more_info',10);
    
    // remove details from sidebar
    function my_change_sidebar_content_order() {
        return array( 
    							'geodir_social_sharing_buttons',
    							'geodir_share_this_button',
    							'geodir_detail_page_google_analytics',
    							'geodir_edit_post_link',
    							'geodir_detail_page_review_rating'
    							 );
    }
    add_filter('geodir_detail_page_sidebar_content', 'my_change_sidebar_content_order');
    

    Thanks
    Thanks

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