Plugin Directory

Changeset 3207983


Ignore:
Timestamp:
12/14/2024 01:56:26 PM (14 months ago)
Author:
tekod
Message:

Update to version 0.3.2 from GitHub

Location:
cp-blocks-for-acf
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • cp-blocks-for-acf/tags/0.3.2/assets/cp-blocks-for-acf.js

    r3195910 r3207983  
    165165            });
    166166            // Clean Select2
    167             $layout.find('.acf-field-select').each(function() {
    168                 $(this).find('> .acf-input span').remove();
     167            $layout.find('.acf-field-select, .acf-field-taxonomy, .acf-field-user').each(function() {
     168                $(this).find('> .acf-input span.select2').remove();
    169169                $(this).find('> .acf-input select').removeAttr('tabindex aria-hidden').removeClass();
    170170            });
  • cp-blocks-for-acf/tags/0.3.2/cp-blocks-for-acf.php

    r3195910 r3207983  
    33Plugin Name: Copy/Paste FlexContent Blocks for ACF
    44Description: Feature for ACF that allows copy-paste flexible blocks.
    5 Version:     0.3.1
     5Version:     0.3.2
    66Author:      Miroslav Curcic
    77Author URI:  https://profiles.wordpress.org/tekod
     
    2727define('CPBLOCKSFORACF_PLUGINBASENAME', plugin_basename(__FILE__));
    2828define('CPBLOCKSFORACF_DIR', __DIR__);
    29 define('CPBLOCKSFORACF_VERSION', '0.3.1'); // plugin version
     29define('CPBLOCKSFORACF_VERSION', '0.3.2'); // plugin version
    3030
    3131// run plugin
  • cp-blocks-for-acf/tags/0.3.2/readme.txt

    r3195910 r3207983  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 0.3.1
     6Stable tag: 0.3.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    3636==Limitations==
    3737This will not transfer media or posts.
    38 Coping fields that use ID-s to refer to a content (such as: media images, links, relationship...) to another location
    39 may link the wrong resource to the field because posts/media on another site may have different ID-s.
     38Coping fields that use ID-s to refer to a content (such as: media images, links, relationship...) to another location may link the wrong resource to the field because posts/media on another site may have different ID-s.
    4039In this case you must manually rewire such fields and connect appropriate posts.
    4140
     
    5049 - https://github.com/magicstickuk/Flexible-Content-Duplication
    5150
    52 "ACF-extended" has similar feature, but it didn't work on any of 20 sites I tested, probably because of the way
    53 how the flexible container is integrated into the project.
     51"ACF-extended" has similar feature, but it didn't work on any of 20 sites I tested, probably because of the way how the flexible container is integrated into the project.
    5452So I created a solution that works for me and shared publicly with everyone with the same problem.
    5553
  • cp-blocks-for-acf/trunk/assets/cp-blocks-for-acf.js

    r3195910 r3207983  
    165165            });
    166166            // Clean Select2
    167             $layout.find('.acf-field-select').each(function() {
    168                 $(this).find('> .acf-input span').remove();
     167            $layout.find('.acf-field-select, .acf-field-taxonomy, .acf-field-user').each(function() {
     168                $(this).find('> .acf-input span.select2').remove();
    169169                $(this).find('> .acf-input select').removeAttr('tabindex aria-hidden').removeClass();
    170170            });
  • cp-blocks-for-acf/trunk/cp-blocks-for-acf.php

    r3195910 r3207983  
    33Plugin Name: Copy/Paste FlexContent Blocks for ACF
    44Description: Feature for ACF that allows copy-paste flexible blocks.
    5 Version:     0.3.1
     5Version:     0.3.2
    66Author:      Miroslav Curcic
    77Author URI:  https://profiles.wordpress.org/tekod
     
    2727define('CPBLOCKSFORACF_PLUGINBASENAME', plugin_basename(__FILE__));
    2828define('CPBLOCKSFORACF_DIR', __DIR__);
    29 define('CPBLOCKSFORACF_VERSION', '0.3.1'); // plugin version
     29define('CPBLOCKSFORACF_VERSION', '0.3.2'); // plugin version
    3030
    3131// run plugin
  • cp-blocks-for-acf/trunk/readme.txt

    r3195910 r3207983  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 0.3.1
     6Stable tag: 0.3.2
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    3636==Limitations==
    3737This will not transfer media or posts.
    38 Coping fields that use ID-s to refer to a content (such as: media images, links, relationship...) to another location
    39 may link the wrong resource to the field because posts/media on another site may have different ID-s.
     38Coping fields that use ID-s to refer to a content (such as: media images, links, relationship...) to another location may link the wrong resource to the field because posts/media on another site may have different ID-s.
    4039In this case you must manually rewire such fields and connect appropriate posts.
    4140
     
    5049 - https://github.com/magicstickuk/Flexible-Content-Duplication
    5150
    52 "ACF-extended" has similar feature, but it didn't work on any of 20 sites I tested, probably because of the way
    53 how the flexible container is integrated into the project.
     51"ACF-extended" has similar feature, but it didn't work on any of 20 sites I tested, probably because of the way how the flexible container is integrated into the project.
    5452So I created a solution that works for me and shared publicly with everyone with the same problem.
    5553
Note: See TracChangeset for help on using the changeset viewer.