Changeset 1520499
- Timestamp:
- 10/23/2016 06:23:30 PM (9 years ago)
- Location:
- pricingtable/trunk
- Files:
-
- 6 edited
-
css/style.css (modified) (1 diff)
-
pricingtable.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
themes/flat/index.php (modified) (2 diffs)
-
themes/rounded/index.php (modified) (3 diffs)
-
themes/sonnet/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pricingtable/trunk/css/style.css
r1515207 r1520499 11 11 box-sizing:border-box; 12 12 height:auto; 13 margin: 30px0;14 padding: 50px0;13 margin: 0; 14 padding: 0; 15 15 text-align:center; 16 16 width:100%; -
pricingtable/trunk/pricingtable.php
r1519367 r1520499 4 4 Plugin URI: http://pickplugins.com/items/pricing-table/ 5 5 Description: Long waited pricing table plugin for WordPress published to display pricing grid on your WordPress site. 6 Version: 1.1 06 Version: 1.11 7 7 Author: paratheme 8 8 Author URI: http://pickplugins.com/ … … 106 106 function pricingtable_activation() 107 107 { 108 $pricingtable_version= "1.1 0";108 $pricingtable_version= "1.11"; 109 109 update_option('pricingtable_version', $pricingtable_version); //update plugin version. 110 110 -
pricingtable/trunk/readme.txt
r1519367 r1520499 5 5 Requires at least: 3.8 6 6 Tested up to: 4.6.1 7 Stable tag: 1.1 07 Stable tag: 1.11 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 94 94 95 95 96 = 1.11 = 97 * 24/10/2016 - fix - column width issue fixed. 98 * 24/10/2016 - fix - rounded table height issue fixed. 99 96 100 = 1.10 = 97 101 * 15/10/2016 - update - update admin UI. -
pricingtable/trunk/themes/flat/index.php
r1515207 r1520499 37 37 38 38 39 if(empty($pricingtable_column_width[$j])) 40 { 41 $pricingtable_column_width[$j] = ""; 42 } 39 if(empty($pricingtable_column_width[$j])){ 40 41 $column_width = $pricingtable_column_width[$j]; 42 } 43 else{ 44 $column_width = $pricingtable_column_width[$j]; 45 $column_width = str_replace('px','',$column_width); 46 47 } 48 43 49 44 50 if(empty($pricingtable_cell_header_bg_color[$j])) … … 74 80 75 81 76 $pricingtable_body.= '<div style="width:'.$ pricingtable_column_width[$j].'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">';82 $pricingtable_body.= '<div style="width:'.$column_width.'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">'; 77 83 78 84 -
pricingtable/trunk/themes/rounded/index.php
r1515207 r1520499 34 34 35 35 36 if(empty($pricingtable_column_width[$j])) 37 { 38 $pricingtable_column_width[$j] = ""; 39 } 36 if(empty($pricingtable_column_width[$j])){ 37 38 $column_width = $pricingtable_column_width[$j]; 39 } 40 else{ 41 $column_width = $pricingtable_column_width[$j]; 42 $column_width = str_replace('px','',$column_width); 43 44 } 45 46 47 48 40 49 41 50 if(empty($pricingtable_cell_header_bg_color[$j])) … … 71 80 72 81 73 $pricingtable_body.= '<div style="width:'.$ pricingtable_column_width[$j].'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">';74 75 76 $pricingtable_body.= '<div style="width:'.$ pricingtable_column_width[$j].'px;height:'.$pricingtable_column_width[$j].'px; background-color:'.$pricingtable_cell_signup_bg_color[$j].'" class="pricingtable-columns" >';77 $pricingtable_body.= '<div class="pricingtable-items-container" >';82 $pricingtable_body.= '<div style="width:'.$column_width.'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">'; 83 84 85 $pricingtable_body.= '<div style="width:'.$column_width.'px;height:'.$column_width.'px; background-color:'.$pricingtable_cell_signup_bg_color[$j].'" class="pricingtable-columns" >'; 86 $pricingtable_body.= '<div class="pricingtable-items-container" style="height:'.$column_width.'px;">'; 78 87 79 88 $i = 1; … … 254 263 255 264 265 266 256 267 257 268 $pricingtable_body.= '</style>'; -
pricingtable/trunk/themes/sonnet/index.php
r1515207 r1520499 35 35 36 36 37 if(empty($pricingtable_column_width[$j])) 38 { 39 $pricingtable_column_width[$j] = ""; 37 if(empty($pricingtable_column_width[$j])){ 38 39 $column_width = $pricingtable_column_width[$j]; 40 } 41 else{ 42 $column_width = $pricingtable_column_width[$j]; 43 $column_width = str_replace('px','',$column_width); 44 40 45 } 41 46 … … 72 77 73 78 74 $pricingtable_body.= '<div style="width:'.$ pricingtable_column_width[$j].'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">';79 $pricingtable_body.= '<div style="width:'.$column_width.'px;" class="pricingtable-columns-container '.$pricingtable_featured.' column-hover-effect">'; 75 80 76 81
Note: See TracChangeset
for help on using the changeset viewer.