Plugin Directory

Changeset 3344080


Ignore:
Timestamp:
08/13/2025 12:52:30 PM (8 months ago)
Author:
eventilla
Message:

Deploy version 2.0.8

Location:
eventilla-events
Files:
296 added
3 edited

Legend:

Unmodified
Added
Removed
  • eventilla-events/trunk/README.txt

    r3309650 r3344080  
    66Tested up to: 6.8.1
    77Requires PHP: 7.4
    8 Stable tag: 2.0.7
     8Stable tag: 2.0.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555=== Changelog ==
     56= 2.0.8 =
     57- Datafields are now each added as their own custom meta fields.
     58- Bug fixes
    5659= 2.0.7 =
    5760- Bug fixes
  • eventilla-events/trunk/eventilla-wp.php

    r3309650 r3344080  
    1616 * Plugin URI:        https://www.eventilla.com/
    1717 * Description:       Eventilla Events brings your event information from eventilla.com to WordPress as custom posts.
    18  * Version:           2.0.7
     18 * Version:           2.0.8
    1919 * Author:            Eventilla
    2020 * Author URI:        http://www.eventilla.com
     
    3636 */
    3737if(!defined('EVENTILLA_WP_VERSION')) {
    38     define('EVENTILLA_WP_VERSION', '2.0.7');
     38    define('EVENTILLA_WP_VERSION', '2.0.8');
    3939}
    4040
  • eventilla-events/trunk/includes/model/class-eventilla-event.php

    r3309650 r3344080  
    359359        ];
    360360
     361
     362        foreach ($event['datafields'] ?? [] as $key => $value) {
     363            $meta_input['eventilla_datafield_' . $key] = $value;
     364        }
     365
    361366        if( $this->options['use_social_media_image'] ) {
    362367            $meta_input['eventilla_image'] = ((string) $event['logo']['social_media']) ?? null;
Note: See TracChangeset for help on using the changeset viewer.