Changeset 2297466
- Timestamp:
- 05/04/2020 05:19:30 AM (6 years ago)
- Location:
- scroll-magic-addon-for-elementor/trunk
- Files:
-
- 4 edited
-
includes/elementor/add_content.class.php (modified) (2 diffs)
-
includes/elementor/add_section.class.php (modified) (2 diffs)
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scroll-magic-addon-for-elementor/trunk/includes/elementor/add_content.class.php
r2288386 r2297466 27 27 $transform = "'transform':'"; 28 28 foreach ( $setting2 as $key3 => $setting3 ){ 29 30 if('_id'==$key3 || ( empty($setting3)&& $setting3!==0) ){29 30 if('_id'==$key3 || 'title_effect'==$key3 ||( empty($setting3)&& $setting3!==0) ){ 31 31 }elseif(in_array($key3, ['wpmp_translateX','wpmp_translateY','wpmp_translateZ'] )){ 32 32 $transform .= $key3."(".$setting3."px)"; … … 38 38 $attr.="'".$key3."':'".$setting3."',"; 39 39 } 40 40 41 } 41 42 $transform .= "',"; -
scroll-magic-addon-for-elementor/trunk/includes/elementor/add_section.class.php
r2288386 r2297466 545 545 $repeater_e = new \Elementor\Repeater(); 546 546 $repeater_e->add_control( 547 ' wpmpp_title',547 'title_effect', 548 548 [ 549 549 'label' => __( 'Title', 'wpmp' ), … … 835 835 'fields' => $repeater_e->get_controls(), 836 836 'default' => [], 837 'title_field' => '{{{ wpmpp_title}}}',837 'title_field' => '{{{title_effect}}}', 838 838 ] 839 839 ); -
scroll-magic-addon-for-elementor/trunk/index.php
r2288386 r2297466 2 2 /* 3 3 Plugin Name: Scroll Magic Addon for Elementor 4 Description: ScrollMagic for Elementor makes it easy to respond to the user's current scroll position. This is the perfect plugin to create an animation effect for you if you like. 5 Version: 1.0 4 Plugin URI: https://scrollmagic-elementor.magicpages.tech/ 5 Description: ScrollMagic for Elementor makes it easy to react to a user's current scroll position. 6 Version: 1.0.1 6 7 Author: MagicPages 7 Author URI: https://scrollmagic-elementor.magicpages.tech/8 8 */ 9 9 if ( ! defined( 'WPINC' ) ) { … … 11 11 } 12 12 13 defined( 'WPMP_SMG_ELE_VERSION' ) or define('WPMP_SMG_ELE_VERSION','1.0. 0') ;13 defined( 'WPMP_SMG_ELE_VERSION' ) or define('WPMP_SMG_ELE_VERSION','1.0.1') ; 14 14 defined( 'WPMP_SMG_ELE_URL' ) or define('WPMP_SMG_ELE_URL', plugins_url( '/', __FILE__ )) ; 15 15 -
scroll-magic-addon-for-elementor/trunk/readme.txt
r2288488 r2297466 57 57 == Changelog == 58 58 59 = 1.0.1 - 04/05/2020 = 60 - Fixed: Invalid property wpmpp_title 61 59 62 = 1.0 = 60 63 * init. … … 62 65 == Upgrade Notice == 63 66 67 68 64 69 == A brief Markdown Example ==
Note: See TracChangeset
for help on using the changeset viewer.