Plugin Directory

Changeset 1520499


Ignore:
Timestamp:
10/23/2016 06:23:30 PM (9 years ago)
Author:
paratheme
Message:

version update

Location:
pricingtable/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • pricingtable/trunk/css/style.css

    r1515207 r1520499  
    1111box-sizing:border-box;
    1212height:auto;
    13 margin:30px 0;
    14 padding:50px 0;
     13margin: 0;
     14padding: 0;
    1515text-align:center;
    1616width:100%;
  • pricingtable/trunk/pricingtable.php

    r1519367 r1520499  
    44Plugin URI: http://pickplugins.com/items/pricing-table/
    55Description: Long waited pricing table plugin for WordPress published to display pricing grid on your WordPress site.
    6 Version: 1.10
     6Version: 1.11
    77Author: paratheme
    88Author URI: http://pickplugins.com/
     
    106106function pricingtable_activation()
    107107    {
    108         $pricingtable_version= "1.10";
     108        $pricingtable_version= "1.11";
    109109        update_option('pricingtable_version', $pricingtable_version); //update plugin version.
    110110       
  • pricingtable/trunk/readme.txt

    r1519367 r1520499  
    55    Requires at least: 3.8
    66    Tested up to: 4.6.1
    7     Stable tag: 1.10
     7    Stable tag: 1.11
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9494
    9595
     96    = 1.11 =
     97    * 24/10/2016 - fix - column width issue fixed.
     98    * 24/10/2016 - fix - rounded table height issue fixed. 
     99
    96100    = 1.10 =
    97101    * 15/10/2016 - update - update admin UI.
  • pricingtable/trunk/themes/flat/index.php

    r1515207 r1520499  
    3737
    3838                   
    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                   
    4349                   
    4450                if(empty($pricingtable_cell_header_bg_color[$j]))
     
    7480           
    7581             
    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">';
    7783           
    7884           
  • pricingtable/trunk/themes/rounded/index.php

    r1515207 r1520499  
    3434
    3535                   
    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                   
    4049                   
    4150                if(empty($pricingtable_cell_header_bg_color[$j]))
     
    7180           
    7281             
    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;">';
    7887           
    7988            $i = 1;
     
    254263       
    255264
     265               
     266
    256267       
    257268        $pricingtable_body.=  '</style>';
  • pricingtable/trunk/themes/sonnet/index.php

    r1515207 r1520499  
    3535
    3636                   
    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                       
    4045                    }
    4146                   
     
    7277           
    7378             
    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">';
    7580           
    7681           
Note: See TracChangeset for help on using the changeset viewer.