the variables i need to use are $street and $city
Code: Select all
{SimpleGoogleMap map='mymap' addr='Musee du Louvre, Paris'}Code: Select all
{SimpleGoogleMap map='mymap' addr=$street, $city}Code: Select all
{SimpleGoogleMap map='mymap' addr='Musee du Louvre, Paris'}Code: Select all
{SimpleGoogleMap map='mymap' addr=$street, $city}Code: Select all
{SimpleGoogleMap map='mymap' addr=$street}Try with:cubix wrote: {$street} and {$city} are fields ive created for the cataloger.
the problem i have is how to put both tags inside another smarty tag without throwing errors.
works fineCode: Select all
{SimpleGoogleMap map='mymap' addr=$street}
but i need to add the street, then the city for it to show the correct location.
Code: Select all
{SimpleGoogleMap map="mymap" addr="$street, $city"}Code: Select all
{assign var="map" value=$street,$city}