didierott
Forum Replies Created
-
Forum: Plugins
In reply to: [User Access Manager] Problem with Nextgen gallery extention betaThanks for this fast correction
Hi
thanks for the version 1.3.3 . I have installed it
Without selecting the new option or with selecting the new option, I have only the pins without the map as background of the image.When I look at the $image_worldmap
i got
https://ott.fr/wp?do_wo_map=1&time=15&units=minutes&map=2&pin=1&pins=off&text=on&textcolor=000000&textshadow=FFFFFF&textalign=cb&ul_lat=0&ul_lon=0&lr_lat=360&lr_lon=180&offset_x=0&offset_y=0&type=pngwhich gives when I put in in Firefox
the image … cant be shown because it contains errorsdidier
I have the same issue on one of my two wordpress sites
to make the maps visible, I have modified the source :
// select map image
$image_worldmap = $url_visitor_maps .’images/’ . $C[‘image_worldmap’]; // default
$image_worldmap_path = $path_visitor_maps .’images/’ . $C[‘image_worldmap’]; // default
$G[‘map’] = 1;
if ( isset($MS[‘map’]) && is_numeric($MS[‘map’]) ) {
$G[‘map’] = floor($MS[‘map’]);
$image_worldmap = $url_visitor_maps . ‘images/’ . $C[‘image_worldmap_’.$G[‘map’]];
$image_worldmap2 = $image_worldmap;
// line above was added;
$image_worldmap_path = $path_visitor_maps . ‘images/’ . $C[‘image_worldmap_’.$G[‘map’]];and modified a word in the line below :
$string .= ‘<div style=”position:relative; border:none; background-image:url(‘.$image_worldmap2.’); width:’.$image_worldmap_width.’px; height:’.$image_worldmap_height.’px;”>’;