Change Sidebar Position

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

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

Open Support Ticket
  • Author
    Posts
  • #58349

    Max Hilton
    Buyer
    Post count: 23

    Hi,

    Can I know how to change the position of company info as per attachment ? Thanks.

    #58428

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    please try this in your theme functions.php:

    
    
    add_filter('geodir_detail_page_sidebar_content', 'geodir_detail_page_sidebar_content_order_myfix',10,1);
    
    function geodir_detail_page_sidebar_content_order_myfix($sort){
     $elements_to_remove = array('geodir_detail_page_more_info');
     $sort = array_diff($sort,$elements_to_remove);
            array_unshift($sort, "geodir_detail_page_more_info");
     return $sort;
    }

    Let us know,

    Thanks

    #58487

    Max Hilton
    Buyer
    Post count: 23

    Hi Paolo,

    it seems working well, thanks for the help :).

    #58560

    Paolo
    Site Admin
    Post count: 31206

    you are welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)

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

Open Support Ticket