Changeset 3258187
- Timestamp:
- 03/19/2025 06:00:14 AM (12 months ago)
- Location:
- xpro-elementor-addons/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
libs/starter-sites/classes/class-starter-sites-admin.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
xpro-elementor-addons.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xpro-elementor-addons/trunk/changelog.txt
r3255986 r3258187 1 = V 1.4.9 – 19 Mar 2025 2 3 - Fix: Resolved an issue where starter sites failed to import xpro Theme Builder-related layouts. 4 5 1 6 = V 1.4.8 – 14 Mar 2025 2 7 -
xpro-elementor-addons/trunk/libs/starter-sites/classes/class-starter-sites-admin.php
r3250779 r3258187 1861 1861 * todo it may not required 1862 1862 * backwards compat with old import format.*/ 1863 if ( isset( $post_data['meta'] ) ) { 1864 foreach ( $post_data['meta'] as $key => $meta ) { 1865 if ( is_array( $meta ) && count( $meta ) == 1 ) { 1866 $single_meta = current( $meta ); 1867 if ( ! is_array( $single_meta ) ) { 1868 $post_data['meta'][ $key ] = $single_meta; 1863 // if ( isset( $post_data['meta'] ) ) { 1864 // foreach ( $post_data['meta'] as $key => $meta ) { 1865 // if ( is_array( $meta ) && count( $meta ) == 1 ) { 1866 // $single_meta = current( $meta ); 1867 // if ( ! is_array( $single_meta ) ) { 1868 // $post_data['meta'][ $key ] = $single_meta; 1869 // } 1870 // } 1871 // } 1872 // } 1873 1874 if ( isset( $post_data['meta'] ) && is_array( $post_data['meta'] ) ) { 1875 foreach ( $post_data['meta'] as $key => $value ) { 1876 if ( '_elementor_page_settings' === $key || '_elementor_data' === $key ) { 1877 if ( ! is_array( $value ) ) { 1878 $post_data['meta'][ $key ] = json_decode( $value, true ); 1879 if ( json_last_error() !== JSON_ERROR_NONE ) { 1880 $post_data['meta'][ $key ] = []; 1881 } 1869 1882 } 1870 1883 } -
xpro-elementor-addons/trunk/readme.txt
r3255986 r3258187 1 1 === 140+ Widgets | Xpro Addons For Elementor - FREE === 2 2 Plugin Name: Xpro Addons For Elementor (140+ Widgets & Free Theme Builder) 3 Version: 1.4. 83 Version: 1.4.9 4 4 Contributors: Xpro 5 5 Tags: elementor, widgets for elementor, elementor widgets, addons for elementor, woocommerce elementor … … 266 266 == Changelog == 267 267 268 = V 1.4.9 – 19 Mar 2025 269 270 - Fix: Resolved an issue where starter sites failed to import xpro Theme Builder-related layouts. 271 272 268 273 = V 1.4.8 – 14 Mar 2025 269 274 -
xpro-elementor-addons/trunk/xpro-elementor-addons.php
r3255986 r3258187 4 4 * Description: A complete Elementor Addons Pack to enhance your web designing experience. Create amazing websites with 50+ FREE Widgets, Extensions & more. 5 5 * Plugin URI: https://elementor.wpxpro.com/ 6 * Version: 1.4. 86 * Version: 1.4.9 7 7 * Author: Xpro 8 8 * Author URI: https://www.wpxpro.com/ 9 9 * Developer: Xpro Team 10 10 * Text Domain: xpro-elementor-addons 11 * Elementor tested up to: 3.2 7.711 * Elementor tested up to: 3.28.0 12 12 */ 13 13 14 14 defined( 'ABSPATH' ) || die(); 15 15 16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4. 8' );16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.9' ); 17 17 define( 'XPRO_ELEMENTOR_ADDONS__FILE__', __FILE__ ); 18 18 define( 'XPRO_ELEMENTOR_ADDONS_BASE', plugin_basename( __FILE__ ) ); … … 66 66 * @var string The plugin version. 67 67 */ 68 const VERSION = '1.4. 8';68 const VERSION = '1.4.9'; 69 69 70 70 /**
Note: See TracChangeset
for help on using the changeset viewer.