Changeset 1656822
- Timestamp:
- 05/13/2017 11:21:39 PM (9 years ago)
- Location:
- tables-for-elementor
- Files:
-
- 34 added
- 1 deleted
- 4 edited
-
tags/1.0.1 (added)
-
tags/1.0.1/assets (added)
-
tags/1.0.1/assets/css (added)
-
tags/1.0.1/assets/css/editor.css (added)
-
tags/1.0.1/assets/css/editor.min.css (added)
-
tags/1.0.1/assets/css/frontend.css (added)
-
tags/1.0.1/assets/css/frontend.min.css (added)
-
tags/1.0.1/assets/css/tables.css (added)
-
tags/1.0.1/assets/js (added)
-
tags/1.0.1/assets/js/editor.js (added)
-
tags/1.0.1/assets/js/editor.min.js (added)
-
tags/1.0.1/assets/js/frontend.js (added)
-
tags/1.0.1/assets/js/frontend.min.js (added)
-
tags/1.0.1/base (added)
-
tags/1.0.1/base/module-base.php (added)
-
tags/1.0.1/classes (added)
-
tags/1.0.1/classes/utils.php (added)
-
tags/1.0.1/elementor-tables.php (added)
-
tags/1.0.1/includes (added)
-
tags/1.0.1/includes/admin.php (added)
-
tags/1.0.1/includes/modules-manager.php (added)
-
tags/1.0.1/license (added)
-
tags/1.0.1/license.txt (added)
-
tags/1.0.1/license/admin.php (added)
-
tags/1.0.1/license/api.php (added)
-
tags/1.0.1/license/updater.php (added)
-
tags/1.0.1/modules (added)
-
tags/1.0.1/modules/tables (added)
-
tags/1.0.1/modules/tables/module.info.php (added)
-
tags/1.0.1/modules/tables/module.php (added)
-
tags/1.0.1/modules/tables/widgets (added)
-
tags/1.0.1/modules/tables/widgets/table-standard.php (added)
-
tags/1.0.1/plugin.php (added)
-
tags/1.0.1/readme.txt (added)
-
trunk/changelog.txt (deleted)
-
trunk/elementor-tables.php (modified) (2 diffs)
-
trunk/modules/tables/widgets/table-standard.php (modified) (15 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tables-for-elementor/trunk/elementor-tables.php
r1641546 r1656822 5 5 * Plugin URI: https://wordpress.org/plugins/tables-for-elementor 6 6 * Author: WPDevHQ 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Author URI: https://wpdevhq.com/ 9 9 * … … 13 13 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 14 14 15 define( 'ELEMENTOR_TABLES_VERSION', '1.0. 0' );15 define( 'ELEMENTOR_TABLES_VERSION', '1.0.1' ); 16 16 17 17 define( 'ELEMENTOR_TABLES__FILE__', __FILE__ ); -
tables-for-elementor/trunk/modules/tables/widgets/table-standard.php
r1641546 r1656822 42 42 'column_1_title', 43 43 [ 44 'label' => __( 'First Option Title', 'elementor-tables' ),44 'label' => __( 'First Title Settings', 'elementor-tables' ), 45 45 ] 46 46 ); … … 60 60 [ 61 61 'label' => __( 'Title Margins', 'elementor' ), 62 'description' => __( 'Use this option to adjust the margins if you have removed the CTA button.', ' vividi' ),62 'description' => __( 'Use this option to adjust the margins if you have removed the CTA button.', 'elementor-tables' ), 63 63 'type' => Controls_Manager::DIMENSIONS, 64 64 'size_units' => [ 'px', 'em', '%' ], … … 80 80 81 81 $this->add_control( 82 ' view',82 'title_view', 83 83 [ 84 84 'label' => __( 'View', 'elementor-tables' ), … … 93 93 'option_1_button', 94 94 [ 95 'label' => __( ' Option 1 Button', 'elementor-tables' ),95 'label' => __( 'CTA Button 1 Options', 'elementor-tables' ), 96 96 ] 97 97 ); … … 100 100 'enable_button1', 101 101 [ 102 'label' => __( 'Enable CTA Button 1', ' vividi' ),102 'label' => __( 'Enable CTA Button 1', 'elementor-tables' ), 103 103 'type' => Controls_Manager::SWITCHER, 104 104 'default' => 'yes', … … 107 107 'label_off' => 'No', 108 108 'return_value' => 'yes', 109 'description' => __( 'You can show/hide the CTA button for this option.', ' vividi' ),109 'description' => __( 'You can show/hide the CTA button for this option.', 'elementor-tables' ), 110 110 ] 111 111 ); … … 129 129 'label' => __( 'Link', 'elementor-tables' ), 130 130 'type' => Controls_Manager::URL, 131 'condition' => [ 132 'enable_button1' => 'yes', 133 ], 131 134 'placeholder' => 'http://your-link.com', 132 135 'default' => [ … … 182 185 'column_2_title', 183 186 [ 184 'label' => __( 'Second Option Title', 'elementor-tables' ),187 'label' => __( 'Second Title Settings', 'elementor-tables' ), 185 188 ] 186 189 ); … … 200 203 [ 201 204 'label' => __( 'Title Margins', 'elementor' ), 202 'description' => __( 'Use this option to adjust the margins if you have removed the CTA button.', ' vividi' ),205 'description' => __( 'Use this option to adjust the margins if you have removed the CTA button.', 'elementor-tables' ), 203 206 'type' => Controls_Manager::DIMENSIONS, 204 207 'size_units' => [ 'px', 'em', '%' ], … … 220 223 221 224 $this->add_control( 222 ' view',225 'title2_view', 223 226 [ 224 227 'label' => __( 'View', 'elementor-tables' ), … … 233 236 'option_2_button', 234 237 [ 235 'label' => __( ' Option 2 Button', 'elementor-tables' ),238 'label' => __( 'CTA Button 2 Options', 'elementor-tables' ), 236 239 ] 237 240 ); … … 240 243 'enable_button2', 241 244 [ 242 'label' => __( 'Enable CTA Button 2', ' vividi' ),245 'label' => __( 'Enable CTA Button 2', 'elementor-tables' ), 243 246 'type' => Controls_Manager::SWITCHER, 244 247 'default' => 'yes', … … 247 250 'label_off' => 'No', 248 251 'return_value' => 'yes', 249 'description' => __( 'You can show/hide the CTA button for this option.', ' vividi' ),252 'description' => __( 'You can show/hide the CTA button for this option.', 'elementor-tables' ), 250 253 251 254 ] … … 771 774 <?php echo $title1; ?> 772 775 </h3> 773 <?php if ( $settings['enable_button1'] == 'yes' ) : ?>776 <?php if ( $settings['enable_button1'] == 'yes' && ! empty( $settings['button1_cta'] ) ) : ?> 774 777 <a href="<?php echo $btn1_url; ?>" target="<?php echo $btn1_target; ?>" class="btn"> 775 778 <?php echo $button1; ?> … … 781 784 <?php echo $title2; ?> 782 785 </h3> 783 <?php if ( $settings['enable_button2'] == 'yes' ) : ?>786 <?php if ( $settings['enable_button2'] == 'yes' && ! empty( $settings['button2_cta'] ) ) : ?> 784 787 <a href="<?php echo $btn2_url; ?>" target="<?php echo $btn2_target; ?>" class="btn"> 785 788 <?php echo $button2; ?> -
tables-for-elementor/trunk/plugin.php
r1641546 r1656822 72 72 private function _includes() { 73 73 require ELEMENTOR_TABLES_PATH . 'includes/modules-manager.php'; 74 75 if ( is_admin() ) {76 require ELEMENTOR_TABLES_PATH . 'includes/admin.php';77 }78 74 } 79 75 … … 189 185 190 186 $this->add_actions(); 191 192 if ( is_admin() ) {193 new Admin();194 //new License\Admin();195 }196 187 } 197 188 } -
tables-for-elementor/trunk/readme.txt
r1641742 r1656822 5 5 Tags: elementor, pagebuilder, page builder, page builder table, page builder tables, WordPress tables, table builder, builder tables 6 6 Requires at least: 4.4 7 Tested up to: 4.7. 38 Stable tag: 1.0. 07 Tested up to: 4.7.4 8 Stable tag: 1.0.1 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 27 27 == Frequently Asked Questions == 28 28 29 Non Yet! 29 **I've turned the CTA buttons off but they still show** 30 31 While in Elementor edit mode you may need to refresh the page for the changes to take effect! 32 33 **OK, after a refresh the buttons are gone but now I'm left with a bit of empty space(s)! How can I remove these?** 34 35 Switch to one of the Title Settings tabs i.e. First Title Settings and set the Title Margins to 0 or as desired! 30 36 31 37 == Screenshots == … … 35 41 2. Frontend basic comparison table 36 42 37 == Changelog == 43 == Changelog == 44 45 = 1.0.1 = 46 * Fixed: Bug that generated "Notice: Elementor\Controls_Manager::add_control_to_stack was called incorrectly". See [Reported Error] (https://wordpress.org/support/topic/errors-with-wordpress-4-7-4/) 47 * Tweak: CTA button no longer renders if the CTA text is left blank. 48 * Added answers to some FAQ raised recently re the CTA button controls and empty spaces. 38 49 39 50 = 1.0.0 =
Note: See TracChangeset
for help on using the changeset viewer.