Plugin Directory

Changeset 2786977


Ignore:
Timestamp:
09/19/2022 01:11:05 PM (3 years ago)
Author:
codelizarplugs
Message:

update 1.5

Location:
tabs-pills/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • tabs-pills/trunk/README.txt

    r2739443 r2786977  
    44Donate link: https://codelizar.com/
    55Requires at least: 4.0
    6 Tested up to: 6.0
     6Tested up to: 6.0.2
    77Requires PHP: 5.6
    8 Stable tag: 1.4
     8Stable tag: 1.5
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4949### Tabs & Pills Pro Features
    5050
     51* [Upgrade To Pro](https://codelizar.com/product/tabs-pills-pro/)
     52* [Tabs & Pills Pro Demo](https://codelizar.com/elementor-662/)
    5153* Can add WordPress Post in [Tabs](https://codelizar.com/product/tabs-pills-pro/)
    5254* Responsive Design
     
    6567* Add and remove tabs item from backend.
    6668* 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/)
    6975
    7076== Installation ==
     
    9096* Tabs & Pills - THEME D
    9197* Theme Settings
     98* Pro - Add WordPress Post in Tabs
    9299
    93100== 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
    94109
    95110= 1.3 =
  • tabs-pills/trunk/admin/assets/css/admin-tabs-css.css

    r2494478 r2786977  
    2626    margin-right: 20px;
    2727}
    28 .wp-editor-container{
     28/* .wp-editor-container{
    2929    display: none !important;
    30 }
     30} */
    3131.iconpicker-popover.popover.fade.bottomRight.in {
    3232    display: contents !important;
  • tabs-pills/trunk/admin/assets/js/cdlzr-tabsbox-admin.js

    r2471404 r2786977  
    99
    1010    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        });
    1527    });
    1628
  • tabs-pills/trunk/admin/class-tabsbox-admin.php

    r2494478 r2786977  
    1414             add_action('admin_init', array('CDLZR_TABS_BOX_METABOXES', 'metabox_group'), 1);
    1515
     16             add_action( 'wp_ajax_tabs_wpeditor', array( 'CDLZR_TABS_BOX_METABOXES', 'tabs_wpeditor' ) );
     17
    1618            /* Save post meta on the 'save_post' hook. */
    1719            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  
    116116                                                <input type="text" name="mytext[]" class="form-control" value="<?php echo esc_attr($mytext); ?>">
    117117                                                <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> -->
    119119                                                <?php
    120120                                                     wp_editor( $mydesc, "mydesc".$k, $settings = array(
    121121                                                        'drag_drop_upload'    => false,
    122                                                         'media_buttons'       => false,
    123                                                         'textarea_name'       => "mydesc".$k,
     122                                                        'media_buttons'       => true,
     123                                                        'textarea_name'       => "mydesc[]",
    124124                                                        'textarea_rows'       => 5,
    125125                                                        'tabindex'            => '',
     
    134134                                                        'toolbar1'=> 'bold,italic,link',
    135135                                                    ),
    136                                                         'quicktags'           => false,) );                                                 
     136                                                        'quicktags'           => true,) );                                                 
    137137                                                ?> 
    138138                                                <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label>
     
    161161                                            <input type="text" name="mytext[]" class="form-control">
    162162                                            <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>    -->
    164164                                            <?php
    165165                                                wp_editor( "", "mydesc1", $settings = array(
    166166                                                        'drag_drop_upload'    => false,
    167                                                         'media_buttons'       => false,
    168                                                         'textarea_name'       => "mydesc1",
     167                                                        'media_buttons'       => true,
     168                                                        'textarea_name'       => "mydesc[]",
    169169                                                        'textarea_rows'       => 5,
    170170                                                        'tabindex'            => '',
     
    180180                                                        'toolbar1'=> 'bold,italic,link',
    181181                                                    ),
    182                                                         'quicktags'           => false,) );
     182                                                        'quicktags'           => true,) );
    183183                                            ?>
    184184                                            <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label>
     
    201201                                            <input type="text" name="mytext[]" class="form-control">
    202202                                            <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> -->
    204204                                            <?php
    205205                                                wp_editor( "", "mydesc2", $settings = array(
    206206                                                        'drag_drop_upload'    => false,
    207                                                         'media_buttons'       => false,
     207                                                        'media_buttons'       => true,
    208208                                                        'textarea_name'       => "mydesc2",
    209209                                                        'textarea_rows'       => 5,
     
    220220                                                        'toolbar1'=> 'bold,italic,link',
    221221                                                    ),
    222                                                         'quicktags'           => false,) );
     222                                                        'quicktags'           => true,) );
    223223                                            ?>
    224224                                            <label class="mt-3"><?php esc_html_e( 'Font-Awesome Icon', CDLZR_PLUG_TABS_DOM ); ?></label>
     
    623623            return $tabspillsgopro_links;
    624624        }
     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        }
    625673    }
    626674}
  • tabs-pills/trunk/tabs-pills.php

    r2739443 r2786977  
    44 * Plugin URI: https://wordpress.org/plugins/tabs-pills/
    55 * 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.4
     6 * Version: 1.5
    77 * Author: Codelizar
    88 * Author URI: https://codelizar.com
  • tabs-pills/trunk/uninstall.php

    r2739443 r2786977  
    22/**
    33 *
    4  * @since      1.4
     4 * @since      1.5
    55 *
    66 * @package    tabs-pills
Note: See TracChangeset for help on using the changeset viewer.