Changeset 3425021
- Timestamp:
- 12/22/2025 04:18:35 AM (3 weeks ago)
- Location:
- tabs-pro/trunk
- Files:
-
- 4 edited
-
inc/tab-shortcode-ultimate-free-post-type.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
theme/tab-shortcode-ultimate-themes.php (modified) (1 diff)
-
tptabs-ultimate.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tabs-pro/trunk/inc/tab-shortcode-ultimate-free-post-type.php
r3368790 r3425021 206 206 <tr valign="top"> 207 207 <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> 209 211 </th> 210 212 <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> 214 225 </td> 215 226 </tr><!-- End Tab Title Font Size--> -
tabs-pro/trunk/readme.txt
r3368790 r3425021 4 4 Tags: tab, jquery tabs, responsive tabs, tabs, Tabs plugin, tabs plugin jquery, tabs plugin wordpress, tabs short-code, tabs Widget 5 5 Requires at least: 4.0 6 Tested up to: 6. 8.27 Stable tag: 1.96 Tested up to: 6.9 7 Stable tag: 2.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 110 110 == Changelog == 111 111 112 = 2.0.0 = 113 * Release Date - 12/22/2025* 114 * Fix Css Issues. 115 * Update Options Page. 116 * Update Options Page UI. 117 112 118 = 1.9 = 113 119 * Release Date - 09/27/2025* -
tabs-pro/trunk/theme/tab-shortcode-ultimate-themes.php
r3368790 r3425021 122 122 } 123 123 } 124 125 124 ?> -
tabs-pro/trunk/tptabs-ultimate.php
r3368790 r3425021 4 4 Plugin URI: https://themepoints.com/ 5 5 Description: Tab Shortcode Ultimate is yet another simple, responsive, lightweight jQuery tabs plugin for creating responsive tabbed panels with unlimited options 6 Version: 1.96 Version: 2.0.0 7 7 Author: Themepoints 8 8 Author URI: https://themepoints.com/ … … 660 660 add_filter( 'cmb_meta_boxes', 'tp_custom_tabultimate_shortcode_filter_meta_box_free' ); 661 661 662 663 662 /* 664 663 ================================= … … 686 685 function tptabs_ultimate_shortcodes( $atts, $content = null ) { 687 686 $atts = ( shortcode_atts( array( 688 'width' => '',689 'initialtab' => 1,687 'width' => '', 688 'initialtab' => 1, 690 689 'autoplayinterval' => 0, 691 'color' => 'dark'690 'color' => 'dark' 692 691 ), $atts ) ); 693 692
Note: See TracChangeset
for help on using the changeset viewer.