Quote:
Originally Posted by razortw
Hello there.
After you generate the Google Maps code, you should add a white space before and after each curly bracket. This seems to be a Flexy bug, but it won't work otherwise.
You can change this text in the 'Store setup' > 'Translations' section in your back end. This is where every piece of text in X-Cart can be changed actually.
Try searching for 'Free shipping'.
For more information, please check this article
* http://kb.x-cart.com/display/XDD/Managing+texts+labels+in+your+store
|
Been trying to figure this out of morning heres the code i played with:
Code:
<script src='https://maps.googleapis.com/maps/api/js?v=3.exp'>
</script>
<div style='overflow:hidden;height:440px;width:700px;'>
<div id='gmap_canvas' style='height:440px;width:700px;'>
</div>
<div><small><a href="http://embedgooglemaps.com">
embed google maps
</a></small></div>
<div><small>
<a href="https://termsandcondiitionssample.com">terms and conditions sample</a></small>
</div>
<style>#gmap_canvas img
{max-width:none!important;background:none!important}
</style>
</div><script type='text/javascript'>function init_map()
{var myOptions =
{zoom:10,center:new google.maps.LatLng(52.237596,-0.9249144999999999),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker(
{map: map,position: new google.maps.LatLng(52.237596,-0.9249144999999999)}
);infowindow = new google.maps.InfoWindow(
{content:'<strong>Dynamic Office Solutions</strong><br>leo house, ross road, northampon<br>'}
);google.maps.event.addListener(marker, 'click', function()
{infowindow.open(map,marker);}
);infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);
</script>
Still breaks the website...
however i did manage to find the translator and change the text, thanks for that!