Profile Topics Started Replies Created Engagements Favorites Search replies: Forum Replies Created Viewing 2 posts - 1 through 2 (of 2 total) Author Posts September 8, 2016 at 10:03 am in reply to: Show map when no results are found #54022 rmilkerMember I can certainly share it. Please email me: romanmilker(at)gmail.com April 18, 2016 at 3:20 am in reply to: Show map when no results are found #51756 rmilkerMember Hi Eayal, I actually figured this out myself by adding a filter hook like this: add_action( 'gmw_before_no_results', 'nen_communities_no_results_show_map' ); /** * show the map when no results are found * @param array $form main form * @return void() */ function nen_communities_no_results_show_map( $form ) { $gmw = new GMW( $form ); $gmw->map_element(); } 12345678910 add_action( 'gmw_before_no_results', 'nen_communities_no_results_show_map' );/** * show the map when no results are found * @param array $form main form * @return void() */function nen_communities_no_results_show_map( $form ) { $gmw = new GMW( $form ); $gmw->map_element();} Also, I’ve done a whole bunch of other extensions including ajax support for post loading. Please, if you’re interested, you can add our organization’s community page to your showcase page: communities Roman. Author Posts Viewing 2 posts - 1 through 2 (of 2 total)