Home › Forums › MapPress Support › MapPress Pro + Formidable Pro not playing nice › Reply To: MapPress Pro + Formidable Pro not playing nice
Chris,
Thanks for the quick reply.
I actually tried adding the height var and all it does is give the div container a height, but still no map generated.
The problem isn’t related to Formidable. It looks like the PHP isn’t passing the vars properly. Here’s an example from the CDATA of a map using the shortcode:
var mapdata = {"mapid":null,"width":"220","height":null,"zoom":null,"center":{"lat":0,"lng":0},
Note the mapid, height, and zoom values are all null, and the lat/lon are both 0.
A map created with your plugin manually for the same address:
var mapdata = {"mapid":"1","width":"220","height":"220","zoom":13,"center":{"lat":39.990817,"lng":-82.841705},
Sounds like there is a misplaced quote mark or comma somewhere. I’m on a Mac, sometimes characters (like “) don’t get translated correctly.