Plugin Directory

Changeset 3425021


Ignore:
Timestamp:
12/22/2025 04:18:35 AM (3 weeks ago)
Author:
themepoints
Message:
  • Fix CSS Issues.
  • Update Options Page.
  • Update Options Page UI.
Location:
tabs-pro/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tabs-pro/trunk/inc/tab-shortcode-ultimate-free-post-type.php

    r3368790 r3425021  
    206206                    <tr valign="top">
    207207                        <th scope="row">
    208                             <label for="custom_tabultimate_shortcode_title_font_size"><?php _e( 'Tab Title Font Size:', 'tp_tabs_pro' ); ?></label>
     208                            <label for="custom_tabultimate_shortcode_title_font_size">
     209                                <?php echo esc_html__( 'Tab Title Font Size:', 'tp_tabs_pro' ); ?>
     210                            </label>
    209211                        </th>
    210212                        <td style="vertical-align: middle;">
    211                             <input type="number" name="custom_tabultimate_shortcode_title_font_size" id="custom_tabultimate_shortcode_title_font_size" min="10" class="timezone_string" required value="<?php  if($custom_tabultimate_shortcode_title_font_size !=''){echo $custom_tabultimate_shortcode_title_font_size; }else{ echo '15';} ?>">
    212                             <br/>
    213                             <span class="tp_accordions_pro_hint toss"><?php echo __('Set Tab Title Font Size.', 'tp_tabs_pro'); ?></span>
     213                            <?php
     214                            $title_font_size = ! empty( $custom_tabultimate_shortcode_title_font_size )
     215                                ? intval( $custom_tabultimate_shortcode_title_font_size )
     216                                : 15;
     217                            ?>
     218                            <input type="number" name="custom_tabultimate_shortcode_title_font_size" id="custom_tabultimate_shortcode_title_font_size" min="10" required
     219                                value="<?php echo esc_attr( $title_font_size ); ?>"
     220                            />
     221                            <br/>
     222                            <span class="tp_accordions_pro_hint toss">
     223                                <?php echo esc_html__( 'Set Tab Title Font Size.', 'tp_tabs_pro' ); ?>
     224                            </span>
    214225                        </td>
    215226                    </tr><!-- End Tab Title Font Size-->
  • tabs-pro/trunk/readme.txt

    r3368790 r3425021  
    44Tags:  tab, jquery tabs, responsive tabs, tabs, Tabs plugin, tabs plugin jquery, tabs plugin wordpress, tabs short-code, tabs Widget
    55Requires at least: 4.0
    6 Tested up to: 6.8.2
    7 Stable tag: 1.9
     6Tested up to: 6.9
     7Stable tag: 2.0.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    110110== Changelog ==
    111111
     112= 2.0.0 =
     113* Release Date - 12/22/2025*
     114* Fix Css Issues.
     115* Update Options Page.
     116* Update Options Page UI.
     117
    112118= 1.9 =
    113119* Release Date - 09/27/2025*
  • tabs-pro/trunk/theme/tab-shortcode-ultimate-themes.php

    r3368790 r3425021  
    122122    }
    123123}
    124 
    125124?>
  • tabs-pro/trunk/tptabs-ultimate.php

    r3368790 r3425021  
    44        Plugin URI: https://themepoints.com/
    55        Description: Tab Shortcode Ultimate is yet another simple, responsive, lightweight jQuery tabs plugin for creating responsive tabbed panels with unlimited options
    6         Version: 1.9
     6        Version: 2.0.0
    77        Author: Themepoints
    88        Author URI: https://themepoints.com/
     
    660660add_filter( 'cmb_meta_boxes', 'tp_custom_tabultimate_shortcode_filter_meta_box_free' );
    661661
    662 
    663662/*
    664663=================================
     
    686685function tptabs_ultimate_shortcodes( $atts, $content = null ) {
    687686    $atts = ( shortcode_atts( array(
    688         'width' => '',
    689         'initialtab' => 1,
     687        'width'            => '',
     688        'initialtab'       => 1,
    690689        'autoplayinterval' => 0,
    691         'color' => 'dark'
     690        'color'            => 'dark'
    692691    ), $atts ) );
    693692
Note: See TracChangeset for help on using the changeset viewer.