Show Contact Form Tab before Maps = Broken Maps
I tried this solution
http://forums.appthemes.com/contact-...ad-maps-11878/
And it worked to put the Contact form first... though the maps tab would not show maps correctly
The maps do not fill the DIV and when draging map it is broken / tiles don't show etc...
I did some research and tried everything though nothing works... can anyone here help?
To recreate this just change sidebar-ad.php
------
<?php if ( $gmap_active ) { ?>
<li><a href="#priceblock1"><span class="big"><?php _e('Map', 'appthemes') ?></span></a></li>
<?php } ?>
<li><a href="#priceblock2"><span class="big"><?php _e('Contact', 'appthemes') ?></span></a></li>
------
to
------
<li><a href="#priceblock2"><span class="big"><?php _e('Contact', 'appthemes') ?></span></a></li>
<?php if ( $gmap_active ) { ?>
<li><a href="#priceblock1"><span class="big"><?php _e('Map', 'appthemes') ?></span></a></li>
<?php } ?>