Plugin Directory

Changeset 2069729


Ignore:
Timestamp:
04/17/2019 06:06:01 AM (7 years ago)
Author:
checklistcom
Message:

tagging v1.0.7

Location:
tripplan
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • tripplan/tags/1.0.7/readme.txt

    r2006681 r2069729  
    33Tags: trip, google map, map, travel, maps
    44Requires at least: 3.5
    5 Tested up to: 5.0.2
    6 Stable tag: 1.0.6
     5Tested up to: 5.1.1
     6Stable tag: 1.0.7
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • tripplan/tags/1.0.7/tripplan-com.php

    r1817882 r2069729  
    55  Plugin URI: http://checklist.com/
    66  Description: Turn your travel post into an interactive visual trip plan and map. Let users Print, Save, Share, Download to Mobile and more. 100% Free.
    7   Version: 1.0.6
     7  Version: 1.0.7
    88  Author: checklist
    99  Author URI: https://checklist.com
     
    155155        }
    156156
    157         return '
    158         <span class="tripplan-poi"'.$data.'>
    159             '.$elemName.'
    160             '.$schema.'
    161         </span>
    162     ';
     157        return $schema.'<span class="tripplan-poi"'.$data.'>'.$elemName.'</span>';
    163158    }
    164159
     
    185180    }
    186181
    187     return '
    188         <div class="tripplan-poi"'.$data.'>
     182    return '<div class="tripplan-poi"'.$data.'>
    189183            '.$elemName.'
    190184            <ul class="tripplan-poi-tags">
     
    192186            </ul>
    193187            '.$schema.'
    194         </div>
    195     ';
     188        </div>';
    196189}
    197190
     
    223216    $saveTextColor = isset($settings['saveTextColor']) ? $settings['saveTextColor'] : '#FFFFFF';
    224217    $saveBackgroundColor = isset($settings['saveBackgroundColor']) ? $settings['saveBackgroundColor'] : '#FF5722';
    225     $saveStyle = 'color:'.$saveTextColor.'; background-color:'.$saveBackgroundColor.';';
     218    $saveStyle = 'color:'.$saveTextColor.' !important; background-color:'.$saveBackgroundColor.' !important;';
    226219         
    227220    // print button
    228221    $printTextColor = isset($settings['printTextColor']) ? $settings['printTextColor'] : '#FFFFFF';
    229222    $printBackgroundColor = isset($settings['printBackgroundColor']) ? $settings['printBackgroundColor'] : '#2196F3';
    230     $printStyle = 'color:'.$printTextColor.'; background-color:'.$printBackgroundColor.';';
     223    $printStyle = 'color:'.$printTextColor.' !important; background-color:'.$printBackgroundColor.' !important;';
    231224   
    232225    // border
    233226    $borderColor = isset($settings['borderColor']) ? $settings['borderColor'] : '#03A9F4'; 
    234227    $borderStyle = isset($settings['borderStyle']) ? $settings['borderStyle'] : 'dashed';
    235     $style = 'border-style:'.$borderStyle.'; border-color:'.$borderColor.'; padding:20px;';
     228    $style = 'border-style:'.$borderStyle.' !important; border-color:'.$borderColor.' !important; padding:20px;';
    236229
    237230    // source
  • tripplan/trunk/readme.txt

    r2006681 r2069729  
    33Tags: trip, google map, map, travel, maps
    44Requires at least: 3.5
    5 Tested up to: 5.0.2
    6 Stable tag: 1.0.6
     5Tested up to: 5.1.1
     6Stable tag: 1.0.7
    77License: GPLv3
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • tripplan/trunk/tripplan-com.php

    r1817882 r2069729  
    55  Plugin URI: http://checklist.com/
    66  Description: Turn your travel post into an interactive visual trip plan and map. Let users Print, Save, Share, Download to Mobile and more. 100% Free.
    7   Version: 1.0.6
     7  Version: 1.0.7
    88  Author: checklist
    99  Author URI: https://checklist.com
     
    155155        }
    156156
    157         return '
    158         <span class="tripplan-poi"'.$data.'>
    159             '.$elemName.'
    160             '.$schema.'
    161         </span>
    162     ';
     157        return $schema.'<span class="tripplan-poi"'.$data.'>'.$elemName.'</span>';
    163158    }
    164159
     
    185180    }
    186181
    187     return '
    188         <div class="tripplan-poi"'.$data.'>
     182    return '<div class="tripplan-poi"'.$data.'>
    189183            '.$elemName.'
    190184            <ul class="tripplan-poi-tags">
     
    192186            </ul>
    193187            '.$schema.'
    194         </div>
    195     ';
     188        </div>';
    196189}
    197190
     
    223216    $saveTextColor = isset($settings['saveTextColor']) ? $settings['saveTextColor'] : '#FFFFFF';
    224217    $saveBackgroundColor = isset($settings['saveBackgroundColor']) ? $settings['saveBackgroundColor'] : '#FF5722';
    225     $saveStyle = 'color:'.$saveTextColor.'; background-color:'.$saveBackgroundColor.';';
     218    $saveStyle = 'color:'.$saveTextColor.' !important; background-color:'.$saveBackgroundColor.' !important;';
    226219         
    227220    // print button
    228221    $printTextColor = isset($settings['printTextColor']) ? $settings['printTextColor'] : '#FFFFFF';
    229222    $printBackgroundColor = isset($settings['printBackgroundColor']) ? $settings['printBackgroundColor'] : '#2196F3';
    230     $printStyle = 'color:'.$printTextColor.'; background-color:'.$printBackgroundColor.';';
     223    $printStyle = 'color:'.$printTextColor.' !important; background-color:'.$printBackgroundColor.' !important;';
    231224   
    232225    // border
    233226    $borderColor = isset($settings['borderColor']) ? $settings['borderColor'] : '#03A9F4'; 
    234227    $borderStyle = isset($settings['borderStyle']) ? $settings['borderStyle'] : 'dashed';
    235     $style = 'border-style:'.$borderStyle.'; border-color:'.$borderColor.'; padding:20px;';
     228    $style = 'border-style:'.$borderStyle.' !important; border-color:'.$borderColor.' !important; padding:20px;';
    236229
    237230    // source
Note: See TracChangeset for help on using the changeset viewer.