Plugin Directory


Ignore:
Timestamp:
01/04/2020 09:50:10 PM (6 years ago)
Author:
codepeople
Message:

New version 1.0.28
Modifications in the changelogs.

Location:
codepeople-post-map
Files:
79 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • codepeople-post-map/trunk/codepeople-post-map.php

    r2220156 r2222168  
    33Plugin Name: Google Maps CP
    44Text Domain: codepeople-post-map
    5 Version: 1.0.27
     5Version: 1.0.28
    66Author: CodePeople
    77Author URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
  • codepeople-post-map/trunk/include/functions.php

    r2220156 r2222168  
    14351435        $point_img_url = '';
    14361436
    1437         if (isset($point['thumbnail']) && $point['thumbnail'] != "") {
     1437        if (isset($point['thumbnail']) && !empty($point['thumbnail'])) {
    14381438            $point_img_url = $point['thumbnail'];
    14391439            if(preg_match("/attachment_id=(\d+)/i", $point['thumbnail'], $matches)){
  • codepeople-post-map/trunk/readme.txt

    r2220156 r2222168  
    518518== Changelog ==
    519519
     520= 1.0.28 =
     521
     522* Includes some modifications in the infowindows styles.
     523* Fixes an issue to determine the featured images associated to the posts.
     524* Allows generating points from images when teh posts are published by email (Advanced and Developer versions of the plugin)
     525
    520526= 1.0.27 =
    521527
  • codepeople-post-map/trunk/styles/cpm-styles.css

    r1925536 r2222168  
    1010.cpm-mapicon { width:20px; height:34px; cursor:pointer;background:url(../images/icons/marker.png) no-repeat 0 0; }
    1111.cpm-infowindow {margin:0; padding:0px; min-height:80px; font-size:11px; clear:both;}
    12 .cpm-infowindow .cpm-content {float:left;width:100%; color:black;}
     12.cpm-infowindow .cpm-content {width:100%; color:black; padding:10px; box-sizing: border-box;}
    1313.cpm-infowindow .cpm-content .title {font-size:12px; line-height: 18px; font-weight:bold; color:black;}
    1414.cpm-infowindow .cpm-content .address {font-weight:bold; font-size:9px;}
Note: See TracChangeset for help on using the changeset viewer.