Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 16, 2017 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpflippercode/ee4a168ead51d9c30595314e439327e8 to your computer and use it in GitHub Desktop.
Save wpflippercode/ee4a168ead51d9c30595314e439327e8 to your computer and use it in GitHub Desktop.
Arrange position of map and listing using hook
add_filter('wpgmp_map_output','wpgmp_map_output',1,3 );
function wpgmp_map_output($output,$map_div,$listing_div,$map_id) {
// You can use $map_div and $listing_div to place them according to your need.
$output = "<div style='float:right'>".$map_div."</div>";
$output .= "<div style='float:left'>".$listing_div."</div>";
return $output;
}
@purivus-dev
Copy link

Hello,
There's an error in the code:
The number of accepted arguments has to be 4, not 3.

@hostelrob
Copy link

Is it possible to write a conditional that allows this code to work only on large and medium devices? The side by side feature is great, but not on a mobile device.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment