Changeset 3217488
- Timestamp:
- 01/06/2025 07:49:44 AM (15 months ago)
- Location:
- athemes-addons-for-elementor-lite/trunk
- Files:
-
- 4 edited
-
athemes-addons-elementor.php (modified) (2 diffs)
-
inc/functions.php (modified) (2 diffs)
-
inc/traits/button-trait.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
athemes-addons-for-elementor-lite/trunk/athemes-addons-elementor.php
r3210541 r3217488 4 4 * Plugin URI: https://athemes.com/addons-for-elementor 5 5 * Description: Widgets and extensions for the Elementor page builder 6 * Version: 1.0.1 16 * Version: 1.0.12 7 7 * Author: aThemes 8 8 * Author URI: https://athemes.com … … 24 24 25 25 // AAFE constants. 26 define( 'ATHEMES_AFE_VERSION', '1.0.1 1' );26 define( 'ATHEMES_AFE_VERSION', '1.0.12' ); 27 27 define( 'ATHEMES_AFE_FILE', __FILE__ ); 28 28 define( 'ATHEMES_AFE_BASE', trailingslashit( plugin_basename( ATHEMES_AFE_FILE ) ) ); -
athemes-addons-for-elementor-lite/trunk/inc/functions.php
r3210541 r3217488 120 120 'has_scripts' => false, 121 121 ), 122 /*123 122 'creative-button' => array( 124 123 'pro' => true, 125 124 'category' => 'content', 126 125 'title' => esc_html__( 'Creative Button', 'athemes-addons-elementor' ), 127 'desc' => esc_html__( 'Multiple creative button sdesigns', 'athemes-addons-elementor' ),126 'desc' => esc_html__( 'Multiple creative button designs', 'athemes-addons-elementor' ), 128 127 'tutorial_url' => 'https://docs.athemes.com/article/creative-button/', 129 128 'preview_url' => 'https://addons.athemes.com/widget/creative-button/', 130 129 'class' => 'aThemes_Addons\Widgets\Creative_Button', 131 'has_styles' => true, 132 'has_scripts' => false, 133 ), 134 */ 130 'has_styles' => false, // Styles are registered in the loader and loaded from the widget for the selected button style 131 'has_scripts' => false, 132 ), 135 133 'whatsapp-chat' => array( 136 134 'pro' => true, … … 759 757 'title' => esc_html__( 'Content Protection', 'athemes-addons-elementor' ), 760 758 'desc' => esc_html__( 'Protect a section through password or user-role', 'athemes-addons-elementor' ), 761 'tutorial_url' => ' https://docs.athemes.com/article/content-protection/',762 'preview_url' => ' https://addons.athemes.com/widget/content-protection/',759 'tutorial_url' => '', 760 'preview_url' => '', 763 761 'class' => 'aThemes_Addons\Extensions\Content_Protection', 764 762 'has_styles' => false, -
athemes-addons-for-elementor-lite/trunk/inc/traits/button-trait.php
r3191533 r3217488 397 397 $instance->add_render_attribute( $prefix . 'wrapper', 'class', 'elementor-button-wrapper' ); 398 398 399 $instance->add_render_attribute( $prefix . 'button', 'class', 'button aafe-button ' );399 $instance->add_render_attribute( $prefix . 'button', 'class', 'button aafe-button roll-button' ); 400 400 401 401 $instance->add_render_attribute( $prefix . 'button', 'class', $selector ); -
athemes-addons-for-elementor-lite/trunk/readme.txt
r3210541 r3217488 4 4 Tested up to: 6.6.1 5 5 Requires PHP: 5.6 6 Stable tag: 1.0.1 16 Stable tag: 1.0.12 7 7 Contributors: aThemes 8 8 License: GPLv3 or later … … 142 142 == Changelog == 143 143 144 = 1.0.12 = 145 * added creative button widget to pro widget list 146 * disabled some AI fields 147 144 148 = 1.0.11 = 145 149 * Improved compatibility with Elementor 3.2.6
Note: See TracChangeset
for help on using the changeset viewer.