Title: Johann Heyne's Replies | WordPress.org

---

# Johann Heyne

  [  ](https://wordpress.org/support/users/jonua/)

 *   [Profile](https://wordpress.org/support/users/jonua/)
 *   [Topics Started](https://wordpress.org/support/users/jonua/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jonua/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jonua/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jonua/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jonua/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jonua/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 386 total)

1 [2](https://wordpress.org/support/users/jonua/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jonua/replies/page/3/?output_format=md) …
[24](https://wordpress.org/support/users/jonua/replies/page/24/?output_format=md)
[25](https://wordpress.org/support/users/jonua/replies/page/25/?output_format=md)
[26](https://wordpress.org/support/users/jonua/replies/page/26/?output_format=md)
[→](https://wordpress.org/support/users/jonua/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lemon Squeezy — Sell Digital Products, Subscriptions, and Licenses] Request to Add Product Name to Update API Response](https://wordpress.org/support/topic/request-to-add-product-name-to-update-api-response/)
 *  Thread Starter [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [4 months ago](https://wordpress.org/support/topic/request-to-add-product-name-to-update-api-response/#post-18813607)
 * I would also like to add that it would be helpful to have information about the
   product variant as well in the /update API response. If you have mixed products
   with and without variants, then it is not possible to compile a meaningful product
   name with a description without the variant data.
 * File: lemon-squeezy/src/class-lsq-rest-controller.php
   Line 683, add: `'order_item'
   => $order_item ? $order_item->attributes : null,`
 *     ```wp-block-code
       return new \WP_REST_Response(    array(        'success'    => true,        'error'      => '',        'error_code' => '',        'update'     => array(            'version'        => $latest_file->attributes->version,            'tested'         => null,            'requires'       => null,            'author'         => $store ? $store->attributes->name : null,            'author_profile' => $store ? $store->attributes->url : null,            'download_link'  => $latest_file->attributes->download_url,            'trunk'          => $latest_file->attributes->download_url,            'requires_php'   => null,            'last_updated'   => null,            'sections'       => array(                'product_name' => $product ? $product->attributes->name : null, // New                'order_item'   => $order_item ? $order_item->attributes : null, // New                'description'  => $product ? $product->attributes->description : null,                'changelog'    => $latest_file->attributes->version,            ),        ),    ),    200);
       ```
   
 * Thanks a lot again,
   Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Open Link in new tab](https://wordpress.org/support/topic/open-link-in-new-tab-37/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/open-link-in-new-tab-37/#post-18805654)
 * Hi,
 * The new plugin version v1.3.34 now allows the `target="_blank"` attribute by 
   default in table cell content HTML links and automatically ensures that the `
   rel="noopener"` attribute is set.
   I hope, that helps.Cheers,Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Open Link in new tab](https://wordpress.org/support/topic/open-link-in-new-tab-37/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [4 months, 1 week ago](https://wordpress.org/support/topic/open-link-in-new-tab-37/#post-18802428)
 * Hi,
 * The `target="_blank"` attribute is sanitized by a script called DOMPurify. By
   default of DOMPurify, the target attribute is not allowed. But if you know what
   you are doing using `rel="noopener"`, you can allow it by configuring DOMPurify;
   see the following link.
 * [https://wordpress.org/plugins/advanced-custom-fields-table-field/#ui%20sanitizing%20options](https://wordpress.org/plugins/advanced-custom-fields-table-field/#ui%20sanitizing%20options)
 * I will try to find a solution that allows `target="_blank"` by automatically 
   adding `rel="noopener"`. That would make this strict setting for the DOMPurify
   target attribute unnecessary.
   Thanks,Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lemon Squeezy — Sell Digital Products, Subscriptions, and Licenses] Unable to connect](https://wordpress.org/support/topic/unable-to-connect-32/)
 *  Thread Starter [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [5 months ago](https://wordpress.org/support/topic/unable-to-connect-32/#post-18776228)
 * Hi, the issue seems to be solved. I was able to reconnect to my Lemon Squeezy
   account.
 * The issue seems to recur from time to time. Could you please do something to 
   prevent this?
 * Thanks in advanced,
   Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Translation with Polylang](https://wordpress.org/support/topic/translation-with-polylang-8/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [7 months ago](https://wordpress.org/support/topic/translation-with-polylang-8/#post-18713960)
 * Hi,
 * Support for Polylang will be included with the next update. I’m currently trying
   to implement the Polylang DeepL translation functionality.
 * Meanwhile you could add the following code in your functions.php to add the basic
   Polylang support:
 *     ```wp-block-code
       if ( class_exists( 'Polylang' ) && function_exists( 'acf_render_field_setting' ) ) {    add_action( 'acf/render_field_settings/type=table', function( $field ) {        $choices = array(            'ignore' => __( 'Ignore', 'polylang-pro' ),            'copy_once' => __( 'Copy once', 'polylang-pro' ),            'translate' => __( 'Translate', 'polylang-pro' ),            'translate_once' => __( 'Translate once', 'polylang-pro' ),            'sync' => __( 'Synchronize', 'polylang-pro' ),        );        $default = 'translate';        acf_render_field_setting(            $field,            array(                'label' => __( 'Translations', 'polylang-pro' ),                'instructions' => '',                'name' => 'translations',                'type' => 'select',                'choices' => $choices,                'default_value' => $default,            ),            false        );    });}
       ```
   
 * 
   Thanks for pointing that out.Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Bug in readme markdown for 1.3.19](https://wordpress.org/support/topic/bug-in-readme-markdown-for-1-3-19/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [10 months, 1 week ago](https://wordpress.org/support/topic/bug-in-readme-markdown-for-1-3-19/#post-18581190)
 * Thanks, i fixed it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] update_field does not work with users](https://wordpress.org/support/topic/update_field-does-not-work-with-users/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [10 months, 1 week ago](https://wordpress.org/support/topic/update_field-does-not-work-with-users/#post-18579876)
 * The new version 1.3.30 with the fix is released. I hope that works for you.
 * Cheers,
   Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] update_field does not work with users](https://wordpress.org/support/topic/update_field-does-not-work-with-users/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [10 months, 3 weeks ago](https://wordpress.org/support/topic/update_field-does-not-work-with-users/#post-18558534)
 * Hi, thanks for the great issue report. I will fix this in the next release. But
   it will take up to two weeks before I can release the fix in the next release.
 * Cheers,
   Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Won’t update](https://wordpress.org/support/topic/wont-update-13/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/wont-update-13/#post-18477237)
 * Hi, Sorry, I made a mistake. The minimum PHP requirement is version 7.4. I’ve
   corrected that. Please reinstall the plugin to correct the PHP version.
 * Sorry for the inconvenience.
   Johann
    -  This reply was modified 1 year ago by [Johann Heyne](https://wordpress.org/support/users/jonua/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] PHP 7.5?](https://wordpress.org/support/topic/php-7-5-2/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/php-7-5-2/#post-18477216)
 * Hi, Sorry, my mistake. PHP 7.4 is the minimum PHP version. I’ve changed that.
   Please download and install the plugin again.
 * Thanks for the important note.
   Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Missing field description in the ACF/SCF selection window](https://wordpress.org/support/topic/missing-field-description-in-the-acf-scf-selection-window/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/missing-field-description-in-the-acf-scf-selection-window/#post-18476164)
 * Thanks, that helped. I’ve looked into it and taken a few things into consideration.
   
   Regarding the trademark issue, I wrote to ACF and asked for their position and
   instructions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Missing field description in the ACF/SCF selection window](https://wordpress.org/support/topic/missing-field-description-in-the-acf-scf-selection-window/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/missing-field-description-in-the-acf-scf-selection-window/#post-18475265)
 * OK, I’ll take care of it. It’ll be integrated in the next release.
   Thanks, again!
 * Cheers, Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Error loading translations](https://wordpress.org/support/topic/error-loading-translations/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/error-loading-translations/#post-18475110)
 * Hi, the text domain name in the plugin did not meet the requirements. Thanks 
   a lot for the feedback. I corrected it, and in my tests, the Russian translation
   loaded now correctly. I am now waiting for wordpress.org to approve plugin version
   1.3.28.
   Cheers, Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Incorrect links to Secure Custom Fields](https://wordpress.org/support/topic/incorrect-links-to-secure-custom-fields/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/incorrect-links-to-secure-custom-fields/#post-18474442)
 * Hi, thanks a lot! I’ve fixed it.
   Cheers, Johann
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Table Field Add-on for ACF and SCF] Image in table head](https://wordpress.org/support/topic/image-in-table-head/)
 *  Plugin Author [Johann Heyne](https://wordpress.org/support/users/jonua/)
 * (@jonua)
 * [1 year ago](https://wordpress.org/support/topic/image-in-table-head/#post-18468961)
 * Hi,
 * The HTML image tags in your website’s table source code are being escaped. The
   table plugin itself does not do this. I suspect that another tool is filtering
   the output, possibly using `esc_html()` or a similar function. Does this help
   you?
   Cheers, Johann

Viewing 15 replies - 1 through 15 (of 386 total)

1 [2](https://wordpress.org/support/users/jonua/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jonua/replies/page/3/?output_format=md) …
[24](https://wordpress.org/support/users/jonua/replies/page/24/?output_format=md)
[25](https://wordpress.org/support/users/jonua/replies/page/25/?output_format=md)
[26](https://wordpress.org/support/users/jonua/replies/page/26/?output_format=md)
[→](https://wordpress.org/support/users/jonua/replies/page/2/?output_format=md)