Costumization DOCS

This topic contains 12 replies, has 3 voices, and was last updated by  Kor 7 years ago.

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

Open Support Ticket
  • Author
    Posts
  • #374069

    Remy Klopper
    Expired Member
    Post count: 10

    Where are the hook docs? I want to costumize like almost everything about this plugin its not styled very well and i cannot find anything related i need to seek out what everything does and it is just really time consuming. I’d like some answers on where to find a proper hook docs.

    Greetings.

    #374070

    Remy Klopper
    Expired Member
    Post count: 10

    I’d also want to know first how to get google maps just beneath the header as a (‘banner’) on the detail page with a design similar to supreme directory.

    #374071

    Kor
    Moderator
    Post count: 16516

    Hi Remy,

    If you wish to display the Google map on the detail listing page. Here’s what you can do as shown in this screenshot http://prntscr.com/exvlbl . For further customization using custom CSS, check out this article https://wpgeodirectory.com/docs/customizing-your-style/

    Thanks!

    #374072

    Remy Klopper
    Expired Member
    Post count: 10
    #374073

    Remy Klopper
    Expired Member
    Post count: 10

    It really needs to go ontop where the image is. And i’m also not able to delete TITLE and the categories out of the map code is needed<<<< and a doc list with HOOKS

    #374077

    Kor
    Moderator
    Post count: 16516

    Hi Remy,

    You can use the custom PHP code below with the “Code Snippets Plugin” to insert the map above the featured image.

    
    
    add_action('geodir_wrapper_open', 'map_on_sd_detail', 3, 1);
    function map_on_sd_detail($page) {
    	if ($page == 'details-page') {	
    	  echo do_shortcode('[gd_homepage_map]');
    	}	
    }

    Which “TITLE and the categories out of the map code” are you referring to? Please provide some screenshots.

    Thanks!

    #374079

    Remy Klopper
    Expired Member
    Post count: 10
    #374085

    Kor
    Moderator
    Post count: 16516

    Hi Remy,

    This custom CSS code below should remove it. Insert into Gd > Design > Scripts > Custom Style CSS

    
    
    .map_category {
    display:none!important;    
    }
    #374088

    Kor
    Moderator
    Post count: 16516

    Hi Remy,

    Kindly replace the custom PHP code I’ve shared earlier with the below as you should use this shortcode instead [gd_listing_map] and not [gd_homepage_map]

    
    
    add_action('geodir_wrapper_open', 'map_on_sd_detail', 3, 1);
    function map_on_sd_detail($page) {
    	if ($page == 'details-page') {	
    	  echo do_shortcode('[gd_listing_map]');
    	}	
    }
    #374091

    Paolo
    Site Admin
    Post count: 31206

    Hi,

    in our code you will find the complete list of Filters and Actions:

    https://wpgeodirectory.com/codex/codex/

    Let us know if you need us to point out something in particular, but please keep in mind that customization are beyond support.

    Thanks

    #374400

    Remy Klopper
    Expired Member
    Post count: 10

    Paolo that was what i was seeking thank you.

    #374401

    Remy Klopper
    Expired Member
    Post count: 10

    And thanks kor for the support i havent tested it yet as off yet i didnt have the time for it. I shall try it asap. Greetings

    #374407

    Kor
    Moderator
    Post count: 16516

    Hi Remy,

    Alright then, let us know how it goes.

    Thanks!

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

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

Open Support Ticket