Plugin Directory

Changeset 3390808


Ignore:
Timestamp:
11/06/2025 04:14:24 AM (4 months ago)
Author:
Webilia
Message:

Released Listdomer 3.8.2

Location:
listdomer-core
Files:
90 added
4 edited

Legend:

Unmodified
Added
Removed
  • listdomer-core/trunk/app/includes/ocdi.php

    r3376002 r3390808  
    392392        if (class_exists(\Elementor\Plugin::class) && isset($demo['elementor']) && wp_http_validate_url($demo['elementor']))
    393393        {
    394             $kit_path = download_url($demo['elementor'], 60);
    395             if (!is_wp_error($kit_path))
    396             {
    397                 $elementor = \Elementor\Plugin::$instance->app->get_component('import-export');
    398                 $elementor->import_kit($kit_path, ['referrer' => 'remote']);
    399             }
     394            try
     395            {
     396                if (!function_exists('download_url')) require_once ABSPATH . 'wp-admin/includes/file.php';
     397
     398                $kit_path = download_url($demo['elementor'], 60);
     399                if (!is_wp_error($kit_path))
     400                {
     401                    $elementor = \Elementor\Plugin::$instance->app->get_component('import-export');
     402                    $elementor->import_kit($kit_path, ['referrer' => 'remote']);
     403
     404                    if ($kit_path && is_string($kit_path) && file_exists($kit_path)) unlink($kit_path);
     405                }
     406            }
     407            catch (Exception $e) {}
    400408        }
    401409
     
    532540    public function permalinks()
    533541    {
     542        /** @var WP_Rewrite $wp_rewrite */
    534543        global $wp_rewrite;
    535544
  • listdomer-core/trunk/init.php

    r3376002 r3390808  
    88     * @var string
    99     */
    10     public $version = '3.8.1';
     10    public $version = '3.8.2';
    1111
    1212    /**
  • listdomer-core/trunk/listdomer-core.php

    r3376002 r3390808  
    44 * Plugin URI: https://api.webilia.com/go/listdomer
    55 * Description: Core Features of Listdomer Theme
    6  * Version: 3.8.1
     6 * Version: 3.8.2
    77 * Author: Webilia
    88 * Author URI: https://webilia.com/
  • listdomer-core/trunk/readme.txt

    r3376002 r3390808  
    66Requires PHP: 7.2
    77Tested up to: 6.8
    8 Stable tag: 3.8.1
     8Stable tag: 3.8.2
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3333
    3434== Changelog ==
     35
     36= 3.8.2 - November 5th, 2025 =
     37* Fixed an issue in the demo importer.
    3538
    3639= 3.8.1 - October 9th, 2025 =
Note: See TracChangeset for help on using the changeset viewer.