swap logo and profile details in listing detail page

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

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

Open Support Ticket
  • Author
    Posts
  • #349396

    sabarinath ph
    Free User
    Post count: 1

    Hi ,

    I am trying to swap the logo and profile part up and down on the listing detail page.

    Please find the image for detailed info.

    #349528

    Paolo
    Site Admin
    Post count: 31206

    This is how to do it:

    1st you remove the 2 element from the detail page template with these 2 snippets:

    
    
    remove_action('geodir_details_main_content', 'geodir_action_details_slider', 30);
    remove_action('geodir_details_main_content'’, 'geodir_show_detail_page_tabs', 60);

    2nd you add them back with priorities inverted:

    
    
    add_action('geodir_details_main_content', 'geodir_action_details_slider', 60);
    add_action('geodir_details_main_content', 'geodir_show_detail_page_tabs', 30);

    You can add these in functions.php of your child theme or in a plugin like code snippets.

    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