Changeset 2997056
- Timestamp:
- 11/16/2023 01:07:21 PM (2 years ago)
- Location:
- simple-export-import-for-acf-data/trunk
- Files:
-
- 4 edited
-
app.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/SeipEnqueue.php (modified) (1 diff)
-
src/SeipImport.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-export-import-for-acf-data/trunk/app.php
r2993504 r2997056 5 5 Plugin URI: https://www.opcodespace.com 6 6 Author: Opcodespace <mehedee@opcodespace.com> 7 Version: 1.3.1 47 Version: 1.3.15 8 8 Text Domain: simple-export-import-for-acf-data 9 9 */ … … 13 13 define("SEIP_VIEW_PATH", wp_normalize_path(plugin_dir_path(__FILE__) . "view/")); 14 14 define("SEIP_ASSETSURL", plugins_url("assets/", __FILE__)); 15 define('SEIP_PLUGIN_VERSION', '1.3.1 4');15 define('SEIP_PLUGIN_VERSION', '1.3.15'); 16 16 define('PAID_TEXT', '<small class="paid_text">(This is for paid user)</small>'); 17 17 -
simple-export-import-for-acf-data/trunk/readme.txt
r2993640 r2997056 5 5 Tested up to: 6.4.1 6 6 Requires PHP: 7.0 7 Stable tag: 1.3.1 47 Stable tag: 1.3.15 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 96 96 97 97 == Changelog == 98 = 1.3.15 (November 16, 2023) = 99 * Bug Fixed: Link Field type error 100 98 101 = 1.3.14 = 99 102 * Bug Fixed: Importing data of Child Flexible Content fixed -
simple-export-import-for-acf-data/trunk/src/SeipEnqueue.php
r2842642 r2997056 14 14 { 15 15 $version = SEIP_PLUGIN_VERSION; 16 if( $_GET['page'] === 'seip-simple-export-import'){16 if(isset($_GET['page']) && $_GET['page'] === 'seip-simple-export-import'){ 17 17 wp_enqueue_style('chosen-style', SEIP_ASSETSURL . "add-on/chosen-js/chosen.min.css"); 18 18 wp_enqueue_style('virtual-select', SEIP_ASSETSURL . "add-on/virtual-select/virtual-select.min.css", false, $version); -
simple-export-import-for-acf-data/trunk/src/SeipImport.php
r2993504 r2997056 198 198 199 199 # Setting Terms 200 $this->set_terms($post_id, $data['terms']); 200 if(!empty($data['terms'])){ 201 $this->set_terms($post_id, $data['terms']); 202 } 201 203 } 202 204 … … 398 400 } 399 401 400 if (empty($terms)) {401 return false;402 }403 404 402 foreach ($terms as $_term) { 405 403 foreach ($_term as $term) { … … 432 430 protected function link_field($value) 433 431 { 432 if(empty($value['link']['url'])){ 433 return $value; 434 } 434 435 $url = str_replace($value['source_domain'], home_url(), $value['link']['url']); 435 436 $link = $value['link'];
Note: See TracChangeset
for help on using the changeset viewer.