Plugin Directory

Changeset 3360489


Ignore:
Timestamp:
09/12/2025 11:44:36 AM (5 months ago)
Author:
scaleflex
Message:

Disable transformations for Gallery, Featured Image, and ACF fields that store the asset via attachment ID

Location:
scaleflex-vxp-dam-dmo
Files:
54 added
3 edited

Legend:

Unmodified
Added
Removed
  • scaleflex-vxp-dam-dmo/trunk/README.txt

    r3360441 r3360489  
    55Tested up to: 6.8
    66Requires at least: 4.8
    7 Stable tag: 1.0.23
     7Stable tag: 1.0.24
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    245245* Fixed the asset filter type when reopening the widget
    246246
     247= 1.0.24 =
     248* Disable transformations for Gallery, Featured Image, and ACF fields that store the asset via attachment ID
     249
    247250== Upgrade Notice ==
    248251
  • scaleflex-vxp-dam-dmo/trunk/assets/js/dam-widget/sfxvxp-widget-page.js

    r3360441 r3360489  
    164164                    }
    165165
    166                     if (mediaFrame.options.state === 'featured-image' || mediaFrame.acf !== undefined) {
     166                    if (mediaFrame.options.state === 'featured-image' || mediaFrame.acf !== undefined || mediaFrame.options.state === 'gallery' || mediaFrame.options.state === 'gallery-library') {
    167167                        widgetConfig.hideDownloadVariationsOption = 1;
    168168                    }
  • scaleflex-vxp-dam-dmo/trunk/scaleflex-vxp.php

    r3360441 r3360489  
    33 * Plugin Name: Scaleflex VXP - DAM & Cloudimage Visual Optimization
    44 * Description: Scaleflex VXP centralizes, manages, optimizes and accelerates your media assets such as images, videos and document in one single source of truth, improving team collaboration and brand consistency.
    5  * Version: 1.0.23
     5 * Version: 1.0.24
    66 * Author: Scaleflex
    77 * Author URI: https://www.scaleflex.com
     
    1818
    1919// Define plugin constants
    20 define('SFXVXP_VERSION', '1.0.23');
     20define('SFXVXP_VERSION', '1.0.24');
    2121define('SFXVXP_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2222define('SFXVXP_PLUGIN_URL', plugin_dir_url(__FILE__));
Note: See TracChangeset for help on using the changeset viewer.