Advertisement
BakerMan

Events Calendar Satellite View as Default

Sep 13th, 2012
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. // Locate the following code in the single.php template
  4. if( tribe_address_exists( get_the_ID() ) ) { echo tribe_get_embedded_map(); }
  5.  
  6.  
  7. // Change it to the following
  8. if( tribe_address_exists( get_the_ID() ) ) {
  9.     echo str_replace(
  10.         'MapTypeId.ROADMAP',
  11.         'MapTypeId.SATELLITE',
  12.         tribe_get_embedded_map()
  13.     );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement