Changeset 2786977
- Timestamp:
- 09/19/2022 01:11:05 PM (3 years ago)
- Location:
- tabs-pills/trunk
- Files:
-
- 7 edited
-
README.txt (modified) (4 diffs)
-
admin/assets/css/admin-tabs-css.css (modified) (1 diff)
-
admin/assets/js/cdlzr-tabsbox-admin.js (modified) (1 diff)
-
admin/class-tabsbox-admin.php (modified) (1 diff)
-
admin/mbox/class-cdlzr-tabs-metaboxes.php (modified) (7 diffs)
-
tabs-pills.php (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tabs-pills/trunk/README.txt
r2739443 r2786977 4 4 Donate link: https://codelizar.com/ 5 5 Requires at least: 4.0 6 Tested up to: 6.0 6 Tested up to: 6.0.2 7 7 Requires PHP: 5.6 8 Stable tag: 1. 48 Stable tag: 1.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 49 49 ### Tabs & Pills Pro Features 50 50 51 * [Upgrade To Pro](https://codelizar.com/product/tabs-pills-pro/) 52 * [Tabs & Pills Pro Demo](https://codelizar.com/elementor-662/) 51 53 * Can add WordPress Post in [Tabs](https://codelizar.com/product/tabs-pills-pro/) 52 54 * Responsive Design … … 65 67 * Add and remove tabs item from backend. 66 68 * All browser compatible 67 * [Upgrade To Pro](https://codelizar.com/product/tabs-pills-pro/) 68 * [Tabs & Pills Pro Demo](https://codelizar.com/elementor-662/) 69 70 ### More Plugins 71 * [Ultimate YouTube/Vimeo Video Player Pro Demo](https://codelizar.com/product/ultimate-youtube-video-player-pro/) 72 * [Accordion Box Pro With WooCommerce Addon](https://codelizar.com/product/accordion-box-pro/) 73 * [Grid Slid Pinterest Feed Pro](https://codelizar.com/product/grid-slid-pinterest-feed-pro/) 74 * [Grid Slid Pins Pro](https://codelizar.com/product/grid-slid-pins-pro/) 69 75 70 76 == Installation == … … 90 96 * Tabs & Pills - THEME D 91 97 * Theme Settings 98 * Pro - Add WordPress Post in Tabs 92 99 93 100 == Changelog == 101 102 = 1.5 = 103 * Tested up to wordpress 6.0.2 104 * WYSIWYG editor bug fixed at add time 105 * Add Media button & Quick Tags in WYSIWYG editor 106 107 = 1.4 = 108 * Minor Bug Fixed 94 109 95 110 = 1.3 = -
tabs-pills/trunk/admin/assets/css/admin-tabs-css.css
r2494478 r2786977 26 26 margin-right: 20px; 27 27 } 28 .wp-editor-container{28 /* .wp-editor-container{ 29 29 display: none !important; 30 } 30 } */ 31 31 .iconpicker-popover.popover.fade.bottomRight.in { 32 32 display: contents !important; -
tabs-pills/trunk/admin/assets/js/cdlzr-tabsbox-admin.js
r2471404 r2786977 9 9 10 10 jQuery(document).on('click', '#create_tabs_btn', function() { 11 $('.divcontrolboxtabs').first().clone().find('input').attr({ value: '' }).end().find('textarea').val('').end() 12 .fadeIn(100, function() { $(this).appendTo('#divcontrolbox_tabs_rows'); }); 13 $('.divcontrolboxtabs').first().clone().find('input').attr({ value: '' }).end().find('textarea').val('').end() 14 .fadeIn(100, function() { $(this).appendTo('#divcontrolbox_tabs_rows'); }); 11 // $('.divcontrolboxtabs').first().clone().find('input').attr({ value: '' }).end().find('textarea').val('').end() 12 // .fadeIn(100, function() { $(this).appendTo('#divcontrolbox_tabs_rows'); }); 13 // $('.divcontrolboxtabs').first().clone().find('input').attr({ value: '' }).end().find('textarea').val('').end() 14 // .fadeIn(100, function() { $(this).appendTo('#divcontrolbox_tabs_rows'); }); 15 jQuery.ajax({ 16 type: 'post', 17 dataType:'html', 18 url: ajaxurl, 19 data:{ 20 action:"tabs_wpeditor", 21 }, 22 success: function(response){ 23 jQuery('#divcontrolbox_tabs_rows').append(response); 24 25 } 26 }); 15 27 }); 16 28 -
tabs-pills/trunk/admin/class-tabsbox-admin.php
r2494478 r2786977 14 14 add_action('admin_init', array('CDLZR_TABS_BOX_METABOXES', 'metabox_group'), 1); 15 15 16 add_action( 'wp_ajax_tabs_wpeditor', array( 'CDLZR_TABS_BOX_METABOXES', 'tabs_wpeditor' ) ); 17 16 18 /* Save post meta on the 'save_post' hook. */ 17 19 add_action( 'save_post', array('CDLZR_TABS_BOX_METABOXES','tabsbox_save_metabox'), 10, 2); -
tabs-pills/trunk/admin/mbox/class-cdlzr-tabs-metaboxes.php
r2583714 r2786977 116 116 <input type="text" name="mytext[]" class="form-control" value="<?php echo esc_attr($mytext); ?>"> 117 117 <label class="mt-3"><?php esc_html_e( 'My Description', CDLZR_PLUG_TABS_DOM ); ?></label> 118 < textarea id="mydesc<?php echo $k; ?>" name="mydesc[]" class="form-control" rows='4'><?php echo esc_attr($mydesc); ?></textarea>118 <!-- <textarea id="mydesc<?php //echo $k; ?>" name="mydesc[]" class="form-control" rows='4'><?php //echo esc_attr($mydesc); ?></textarea> --> 119 119 <?php 120 120 wp_editor( $mydesc, "mydesc".$k, $settings = array( 121 121 'drag_drop_upload' => false, 122 'media_buttons' => false,123 'textarea_name' => "mydesc ".$k,122 'media_buttons' => true, 123 'textarea_name' => "mydesc[]", 124 124 'textarea_rows' => 5, 125 125 'tabindex' => '', … … 134 134 'toolbar1'=> 'bold,italic,link', 135 135 ), 136 'quicktags' => false,) );136 'quicktags' => true,) ); 137 137 ?> 138 138 <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label> … … 161 161 <input type="text" name="mytext[]" class="form-control"> 162 162 <label class="mt-3"><?php esc_html_e( 'My Description', CDLZR_PLUG_TABS_DOM ); ?></label> 163 < textarea id="mydesc1" name="mydesc[]" class="form-control" rows='4'></textarea>163 <!-- <textarea id="mydesc1" name="mydesc[]" class="form-control" rows='4'></textarea> --> 164 164 <?php 165 165 wp_editor( "", "mydesc1", $settings = array( 166 166 'drag_drop_upload' => false, 167 'media_buttons' => false,168 'textarea_name' => "mydesc 1",167 'media_buttons' => true, 168 'textarea_name' => "mydesc[]", 169 169 'textarea_rows' => 5, 170 170 'tabindex' => '', … … 180 180 'toolbar1'=> 'bold,italic,link', 181 181 ), 182 'quicktags' => false,) );182 'quicktags' => true,) ); 183 183 ?> 184 184 <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label> … … 201 201 <input type="text" name="mytext[]" class="form-control"> 202 202 <label class="mt-3"><?php esc_html_e( 'My Description', CDLZR_PLUG_TABS_DOM ); ?></label> 203 < textarea id="mydesc2" name="mydesc[]" class="form-control" rows='4'></textarea>203 <!-- <textarea id="mydesc2" name="mydesc[]" class="form-control" rows='4'></textarea> --> 204 204 <?php 205 205 wp_editor( "", "mydesc2", $settings = array( 206 206 'drag_drop_upload' => false, 207 'media_buttons' => false,207 'media_buttons' => true, 208 208 'textarea_name' => "mydesc2", 209 209 'textarea_rows' => 5, … … 220 220 'toolbar1'=> 'bold,italic,link', 221 221 ), 222 'quicktags' => false,) );222 'quicktags' => true,) ); 223 223 ?> 224 224 <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label> … … 623 623 return $tabspillsgopro_links; 624 624 } 625 626 public static function tabs_wpeditor(){ 627 ?> 628 <div class="col-md-6 divcontrolboxtabs"> 629 <div class="div_inner"> 630 <div class="form-group div_inner_tabsbox"> 631 <small class="d-block float-right"> 632 <button type="button" class="cdlzr_tabsbox_remove_label btn btn-sm btn-warning cdlzr_remove_label mb-1"><i class="fas fa-times"></i></button> 633 </small> 634 <label><?php esc_html_e( 'My Title', CDLZR_PLUG_TABS_DOM ); ?></label> 635 <input type="text" name="mytext[]" class="form-control"> 636 <label class="mt-3"><?php esc_html_e( 'My Description', CDLZR_PLUG_TABS_DOM ); ?></label> 637 <!-- <textarea id="mydesc1" name="mydesc[]" class="form-control" rows='4'></textarea> --> 638 <?php 639 $setting_arr = array( 640 'drag_drop_upload' => false, 641 'media_buttons' => true, 642 'textarea_name' => "mydesc[]", 643 'textarea_rows' => 5, 644 'tabindex' => '', 645 'tabfocus_elements' => ':prev,:next', 646 'editor_css' => '', 647 'editor_class' => '', 648 'teeny' => false, 649 '_content_editor_dfw' => false, 650 'tinymce' => array( 651 // Items for the Visual Tab 652 'plugins' => 'textcolor,link', 653 // Items for the Visual Tab 654 'toolbar1' => 'bold,italic,link', 655 'quicktags' => true ) 656 ); 657 wp_editor( "", "mydesc1", $setting_arr); 658 ?> 659 <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label> 660 <input type="text" name="myfontawe[]" class="form-control" value=""> 661 <label class="mt-3"><?php esc_html_e( 'Select Post -- For display post in tabs', CDLZR_PLUG_TABS_DOM ); ?></label> 662 <select class="form-control cdlzr_sel_post"> 663 <option> -- Select Post -- </option> 664 <option>Go Premium</option> 665 </select> 666 </div> 667 </div> 668 </div> 669 <?php 670 671 wp_die(); 672 } 625 673 } 626 674 } -
tabs-pills/trunk/tabs-pills.php
r2739443 r2786977 4 4 * Plugin URI: https://wordpress.org/plugins/tabs-pills/ 5 5 * Description: Tabs & Pills is responsive & the most easiest Tabs builder for WordPress. You can create unlimited tabs with unlimited color Scheme. It is simplest way to awesome WordPress Responsive Tabs Plugin with many features. 6 * Version: 1. 46 * Version: 1.5 7 7 * Author: Codelizar 8 8 * Author URI: https://codelizar.com -
tabs-pills/trunk/uninstall.php
r2739443 r2786977 2 2 /** 3 3 * 4 * @since 1. 44 * @since 1.5 5 5 * 6 6 * @package tabs-pills
Note: See TracChangeset
for help on using the changeset viewer.