Changeset 3337292
- Timestamp:
- 07/31/2025 01:04:36 PM (8 months ago)
- Location:
- advanced-custom-fields-table-field/trunk
- Files:
-
- 6 edited
-
acf-table.php (modified) (1 diff)
-
changelog.txt (modified) (1 diff)
-
class-jh-acf-field-table.php (modified) (4 diffs)
-
js/input-v4.js (modified) (1 diff)
-
js/input-v5.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
advanced-custom-fields-table-field/trunk/acf-table.php
r3298546 r3337292 4 4 Plugin URI: https://www.acf-table-field.com 5 5 Description: This free Add-on adds a table field type for the plugins Advanced Custom Fields and Secure Custom Fields. 6 Version: 1.3. 296 Version: 1.3.30 7 7 Author: Johann Heyne 8 8 Author URI: http://www.johannheyne.de -
advanced-custom-fields-table-field/trunk/changelog.txt
r3298546 r3337292 1 1 == Changelog == 2 3 = 1.3.30 = 4 * Enables using update_field() on user fields 2 5 3 6 = 1.3.29 = -
advanced-custom-fields-table-field/trunk/class-jh-acf-field-table.php
r3298546 r3337292 15 15 * @return n/a 16 16 */ 17 18 public $settings; 19 20 public $name; 21 22 public $description; 23 24 public $preview_image; 25 26 public $doc_url; 27 28 public $label; 29 30 public $category; 31 32 public $defaults; 33 34 public $l10n; 17 35 18 36 function __construct() { … … 22 40 */ 23 41 $this->settings = array( 24 'version' => '1.3. 29',42 'version' => '1.3.30', 25 43 'dir_url' => plugins_url( '', __FILE__ ) . '/', 26 44 ); … … 450 468 $data = get_post_meta( $post_id, $field['name'], true ); 451 469 470 // try user meta 471 if ( empty( $data ) ) { 472 473 $data = get_user_meta( str_replace('user_', '', $post_id ), $field['name'], true ); 474 } 475 452 476 // try term_meta 453 477 if ( empty( $data ) ) { … … 456 480 } 457 481 458 // try options482 // try options 459 483 if ( 460 484 empty( $data ) AND ( -
advanced-custom-fields-table-field/trunk/js/input-v4.js
r3298546 r3337292 5 5 var t = this; 6 6 7 t.version = '1.3. 29';7 t.version = '1.3.30'; 8 8 9 9 t.param = {}; -
advanced-custom-fields-table-field/trunk/js/input-v5.js
r3298546 r3337292 5 5 var t = this; 6 6 7 t.version = '1.3. 29';7 t.version = '1.3.30'; 8 8 9 9 t.param = {}; -
advanced-custom-fields-table-field/trunk/readme.txt
r3298546 r3337292 4 4 Requires at least: 5.3 5 5 Tested up to: 6.8 6 Stable tag: 1.3. 296 Stable tag: 1.3.30 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 519 519 == Changelog == 520 520 521 = 1.3.30 = 522 * Enables using update_field() on user fields 523 521 524 = 1.3.29 = 522 525 * Fixes missing field preview image.
Note: See TracChangeset
for help on using the changeset viewer.