Plugin Directory

Changeset 2989857


Ignore:
Timestamp:
11/06/2023 12:18:11 PM (2 years ago)
Author:
opcodespace
Message:

Import filter bug fixed

Location:
simple-export-import-for-acf-data/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simple-export-import-for-acf-data/trunk/app.php

    r2973550 r2989857  
    55Plugin URI: https://www.opcodespace.com
    66Author: Opcodespace <mehedee@opcodespace.com>
    7 Version: 1.3.12
     7Version: 1.3.13
    88Text Domain: simple-export-import-for-acf-data
    99*/
     
    1313define("SEIP_VIEW_PATH", wp_normalize_path(plugin_dir_path(__FILE__) . "view/"));
    1414define("SEIP_ASSETSURL", plugins_url("assets/", __FILE__));
    15 define('SEIP_PLUGIN_VERSION', '1.3.12');
     15define('SEIP_PLUGIN_VERSION', '1.3.13');
    1616define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>');
    1717
  • simple-export-import-for-acf-data/trunk/readme.txt

    r2973550 r2989857  
    33Tags: Export, Import, Page, Post, Custom Post Type, Advanced custom field, Field Value
    44Requires at least: 5.4.0
    5 Tested up to: 6.3.1
     5Tested up to: 6.3.2
    66Requires PHP: 7.0
    77Stable tag: 1.3.12
     
    9696
    9797== Changelog ==
     98= 1.3.13 =
     99* Bug Fixed: Import Post type filtering fixed.
     100
    98101= 1.3.12 =
    99102* Bug Fixed: Saving license key
  • simple-export-import-for-acf-data/trunk/src/SeipImport.php

    r2961647 r2989857  
    8282
    8383            foreach ($posts as $post) {
     84                if(empty($post)){
     85                    continue;
     86                }
    8487                $this->post_data($post, $settings);
    8588
  • simple-export-import-for-acf-data/trunk/view/_import.php

    r2970520 r2989857  
    2727                                    </td>
    2828                                    <td>
    29                                         <select name="post_type" class="chosen-select">
     29                                        <select name="post_type" class="chosen-select post_type">
    3030                                            <option value="">Please Select Type</option>
    3131                                            <?php foreach (get_post_types([], 'objects') as $post_type):
Note: See TracChangeset for help on using the changeset viewer.