Title: Ericmuc's Replies | WordPress.org

---

# Ericmuc

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/ericmuc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ericmuc/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ericmuc/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Blocks to Shortcode - Use blocks everywhere: in page templates, Elementor, etc.] Allow shortcodes in the blocks](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/#post-18406035)
 * Hi there,
   thanks for the recent update – it looks great!However, I noticed that**
   shortcodes are currently not working properly** in the new version.
 * At the moment, only `core/shortcode` blocks are passed through `do_shortcode()`,
   but shortcodes inside other blocks (like paragraphs or columns) are no longer
   executed.
 * Also, the final `$content` doesn’t seem to be passed through `apply_filters( '
   the_content', $content )`, which is normally essential for processing shortcodes,
   oEmbeds, and other content filters.
 * Would it be possible to adjust this in a future update?
 * Here’s a version that works well on our end:
 *     ```wp-block-code
       foreach ( $blocks as $block ) {if ( 'core/embed' === $block['blockName'] ) {$content .= apply_filters( 'the_content', render_block( $block ) );} else {$content .= do_shortcode( render_block( $block ) );}}// Make sure the full content runs through standard WP filters (shortcodes, embeds, etc.)$content = apply_filters( 'the_content', $content );return wp_kses( $content, $allowedHTML );
       ```
   
 * Thanks a lot for looking into it – and for your great work on this plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Blocks to Shortcode - Use blocks everywhere: in page templates, Elementor, etc.] Allow shortcodes in the blocks](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/#post-18392429)
 * Hi again,
   My SVG is currently displaying only in black instead of its intended
   colors. It would be great if this could be improved.
 * Thanks and best regards,
   Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Blocks to Shortcode - Use blocks everywhere: in page templates, Elementor, etc.] Allow shortcodes in the blocks](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/allow-shortcodes-in-the-blocks/#post-18379388)
 * Hi,
   Today I had to extend the Register.php with this code after line 113 for 
   for using further elements:Please check (may be it has to be improved further)
   and please add it into the core if possible.Thanks, kind regardsEric
 *     ```wp-block-code
       $allowedHTML['form'] = ['action' => 1,'method' => 1,'enctype' => 1,'class' => 1,'id' => 1,'data-*' => 1];$allowedHTML['select'] = ['name' => 1,'id' => 1,'class' => 1,'data-*' => 1];$allowedHTML['option'] = ['value' => 1,'selected' => 1,'class' => 1];$allowedHTML['input'] = ['type' => 1,'name' => 1,'value' => 1,'id' => 1,'class' => 1,'checked' => 1,'data-*' => 1];$allowedHTML['label'] = ['for' => 1,'class' => 1];$allowedHTML['button'] = ['type' => 1,'class' => 1];
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18372241)
 * Hi Jamie,
   Thank you so much! That’s fantastic, and I really appreciate you recognizing
   my persistence. Wishing you all the best!Kind regards,Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18368669)
 * Hi, In my further test and in a sandbox of WPML it was found, that the standard
   setting of WPML makes no conflict, but if you set some settings more in WPML,
   the error starts. Please check for yourself. WPML has created a ticket and wrote
   me that they want to contact the plugin author.
 * Thanks so far and I hope here can find a solution soon.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18366494)
 * Hi,
   What can we do now, what is your idea?Thanks, kind regardsEric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Blocks to Shortcode - Use blocks everywhere: in page templates, Elementor, etc.] Thank you and question: WPML Translation Support?](https://wordpress.org/support/topic/thank-you-and-question-wpml-translation-support/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/thank-you-and-question-wpml-translation-support/#post-18361932)
 * Hi,
   I found a solution, but is here no support???Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18358143)
 * Hi,
   I checked it just now again, with WPML the error is active and I cannoit 
   use your plugin, just in my test site, with only minimal settings.Do you want
   to check it there in the staging site? I coudl give you access by email info.
   Thanks, kind regardsEric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18351202)
 * Hi,
 * Did you have a chance to test this with WPML? I would love to use your plugin
   again!
 * Thank you very much and best regards,
   Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18342128)
 * Hi,
 * I tested it with most plugins deactivated and found that **disabling the newly
   released WPML Multilingual CMS (Version 4.7.1) resolves the issue**.
 * Can you check this?
 * Thanks,
   Best regards,Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin Notes Plus] Error in the console – function is broken](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/error-in-the-console-function-is-broken/#post-18329822)
 * Hi,
   I updated your plugin and added a fix of Woocommerce ([https://github.com/woocommerce/woocommerce/issues/46771](https://github.com/woocommerce/woocommerce/issues/46771)),
   but the error remains.Please check, thanks you
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[hCaptcha for WP] Problems with using case](https://wordpress.org/support/topic/problems-with-using-case/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/problems-with-using-case/#post-18295910)
 * Great, thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[hCaptcha for WP] Problems with using case](https://wordpress.org/support/topic/problems-with-using-case/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/problems-with-using-case/#post-18295896)
 * Ok, I understand. Yes, such a code I am using.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple History – Track, Log, and Audit WordPress Changes] Disable in Message Control not working](https://wordpress.org/support/topic/disable-in-message-control-not-working/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/disable-in-message-control-not-working/#post-18267497)
 * Hi,
   Thanks for the quick answer:Simple History: 5.6.0Simple History Debug and
   Monitor: 1.0.0Simple History Premium: 1.0.0Kind regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Simple History – Track, Log, and Audit WordPress Changes] Disable in Message Control not working](https://wordpress.org/support/topic/disable-in-message-control-not-working/)
 *  Thread Starter [Ericmuc](https://wordpress.org/support/users/ericmuc/)
 * (@ericmuc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/disable-in-message-control-not-working/#post-18267452)
 * Hi, I bought it today so the current version, the download of the order. Nothing
   is changing, I click on Disable and the page is loading new, but nothing was 
   changed.

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

1 [2](https://wordpress.org/support/users/ericmuc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ericmuc/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/ericmuc/replies/page/2/?output_format=md)