Title: Mikkel Rommelhoff's Replies | WordPress.org

---

# Mikkel Rommelhoff

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Max Mega Menu] count(): Parameter must be an array or an object that implements Countable](https://wordpress.org/support/topic/count-parameter-must-be-an-array-or-an-object-that-implements-countable-4/)
 *  [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/count-parameter-must-be-an-array-or-an-object-that-implements-countable-4/#post-11560508)
 * Hi there,
 * Im the developer of the image-widget-deluxe plugin, and would like to help out
   the megamenu plugin developer here.
 * First of all thanks [@omnisity](https://wordpress.org/support/users/omnisity/)
   for reporting the issue. If you experience any issue in the future feel free 
   to add it the to support fora on the image-widget-deluxe plugin page.
 * Secondly i’ve looked into the problem which seem to be some old code which wasen’t
   refactored properly. Good news though. If you update the plugin i’ve fixed the
   issue with the count notice.
    Im planning to roll out a new update again in the
   weekend to fix some of the issues i’ve unfortunately introduced refactoring the
   plugin once again. (Should’t be to critical though).
 * All the best,
    Mikkel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] count(): Parameter must be an array or an object that implements Countable](https://wordpress.org/support/topic/count-parameter-must-be-an-array-or-an-object-that-implements-countable-3/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/count-parameter-must-be-an-array-or-an-object-that-implements-countable-3/#post-11546620)
 * Hi Omnisity,
 * I’ve just pushed a version of the plugin which should solve the issue.
 * All the best,
    Mikkel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] Gracefully ajax fallback issue](https://wordpress.org/support/topic/gracefully-ajax-fallback-issue/)
 *  Thread Starter [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/gracefully-ajax-fallback-issue/#post-10792348)
 * Hi yikesitskevin
 * Great to hear it will be in the next version!
    It’s not embarrassing at all –
   it happens for everyone who has a lot on their plate (which im sure you guys 
   have) 😉
 * Have a great day!
    Mikkel
    -  This reply was modified 7 years, 10 months ago by [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP WooCommerce Mailchimp] Placement before terms and conditions](https://wordpress.org/support/topic/placement-before-terms-and-conditions/)
 *  [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/placement-before-terms-and-conditions/#post-8947367)
 * You are welcome. Have a nice day! Hope this helps others.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP WooCommerce Mailchimp] Placement before terms and conditions](https://wordpress.org/support/topic/placement-before-terms-and-conditions/)
 *  [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/placement-before-terms-and-conditions/#post-8943834)
 * Hi there
    Was thinking the exact same when I first needed this. Then I saw how
   long your thread has been here and thought I would create and share a solution
   for you.
 * I made this piece of code which allows you to add additional hooks from your 
   theme. Try it out and change it or add the hooks you need. Cheers.
 *     ```
       /**
        * Adds custom mailchimp hook for the woocommerce-mailchimp plugin.
        * Adds the 'woocommerce_after_order_notes' to the plugin settings.
        */
       add_filter('woocommerce_get_settings_mailchimp', 'woocommerce_mailchimp_theme_settings');
       function woocommerce_mailchimp_theme_settings( $settings ) {
       	$key = -1;
       	foreach ( $settings as $setting_group ) {
       		$key ++;
       		if ( empty($setting_group['id']) ) {
       			continue;
       		} elseif ( 'ss_wc_mailchimp_opt_in_checkbox_display_location' === $setting_group['id'] ) {
       			$settings[$key]['options']['woocommerce_after_order_notes'] = __( 'After order notes', 'theme_domain' );
       		}
       	}
       	return $settings;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Image size](https://wordpress.org/support/topic/image-size-140/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/image-size-140/#post-8650386)
 * Hi Elena
 * Im glad you like the plugin.
    If I remember correctly the plugin is getting the
   available image sizes in your theme. You could register new image sizes in functions.
   php
 * Something like this should work:
 *     ```
       add_action('after_theme_setup','add_new_image_size');
       function add_new_image_size(){
       add_image_size( 'custom-size', 220, 180 ); // 220 pixels wide by 180 pixels tall, soft proportional crop mode
       }
       ```
   
 * Let me know how it works out for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcake (Shortcode UI)] Version 0.7.0 interferes with WooCommerce Products](https://wordpress.org/support/topic/version-0-7-0-interferes-with-woocommerce-products/)
 *  [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/version-0-7-0-interferes-with-woocommerce-products/#post-8480893)
 * I can confirm that the plugin version .7 is incompatible with newest WooCommerce.
   
   Problem is JS errors on the edit product page which will restrict you from being
   able to change product options via the product option tabs.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] “Title” below the image](https://wordpress.org/support/topic/title-below-the-image/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/title-below-the-image/#post-8420444)
 * Hi there,
 * You are welcome.
    I’m not sure that I understand you correctly. Would it be possible
   to see an example?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Link target not working](https://wordpress.org/support/topic/link-target-not-working/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/link-target-not-working/#post-8242277)
 * Hi Tina
 * Thanks for feedback. I will check, fix and update this in the next version.
 * All the best
 * Mikkel
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Can't select an image (tried different browsers)](https://wordpress.org/support/topic/cant-select-an-image-tried-different-browsers/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 10 months ago](https://wordpress.org/support/topic/cant-select-an-image-tried-different-browsers/#post-8242275)
 * Hi there.
    Sorry my late reply but didn’t receive any notice regarding this case.
   We have 4000 active installs at the moment and you seem to be the only one with
   this issue.
 * Please try following approach.
 * 1. Disable all other plugins (You might have conflicting plugins)
    2. Update 
   WordPress 3. Force refresh your browser to download styles and javascript again.
 * If you still have the issue please help us debug this futher with information
   like:
    – What theme are you using? – What version of chrome, firefox, explorer
   are you using? – Are you using the customizer or the widget area?
 * We hope for feedback.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Create Rows of Images](https://wordpress.org/support/topic/create-rows-of-images/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/create-rows-of-images/#post-7250591)
 * Hi Courtny89
    Alright. I think you are asking for a favour the wrong place. This
   seems like some options/integrations within your theme which is missing.
 * Two ways to go from here.
 * 1) Add additional features to your theme allowing the behaviour. (I can help 
   you but not through this forum as this has nothing to do with the plugin).
    2)
   Let the theme developers know that you have a specific request (they might help
   you out).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Create Rows of Images](https://wordpress.org/support/topic/create-rows-of-images/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [9 years, 12 months ago](https://wordpress.org/support/topic/create-rows-of-images/#post-7250589)
 * Hi Courtny89
    Please send me a link so I can see what kind of issues your are
   experiencing. All the best
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Wrap form fields in Gravity Forms] Really useful!](https://wordpress.org/support/topic/really-useful-72/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [10 years ago](https://wordpress.org/support/topic/really-useful-72/#post-8108353)
 * You are welcome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Can't edit text in Firefox](https://wordpress.org/support/topic/cant-edit-text-in-firefox/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/cant-edit-text-in-firefox/#post-7500572)
 * Hi Again
    I just did a test with Firefox 45 + 47 and there was no problem on 
   my Mac running El Capitain.
 * Please try following:
 * 1. Force new files.
    On mac hit CMD + SHIFT + R On Windows hit CTRL + F5
 * 2. Conflict with other plugins.
    If that did not solve the issue then try disable
   your plugins one by one.
 * 3. Check browser console for errors and get send them to me.
 * Let me know if you still have issues and provide me with info from step 3.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Image Widget Deluxe] Feature requests](https://wordpress.org/support/topic/feature-requests-94/)
 *  Plugin Author [Mikkel Rommelhoff](https://wordpress.org/support/users/mrommel/)
 * (@mrommel)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/feature-requests-94/#post-6517497)
 * Feel free to rate the plugin if you like to 🙂

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

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