Mikkel Rommelhoff
Forum Replies Created
-
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 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,
MikkelHi Omnisity,
I’ve just pushed a version of the plugin which should solve the issue.
All the best,
MikkelForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Gracefully ajax fallback issueHi 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 6 years, 5 months ago by Mikkel Rommelhoff.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Placement before terms and conditionsYou are welcome. Have a nice day! Hope this helps others.
Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] Placement before terms and conditionsHi 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
In reply to: [Image Widget Deluxe] Image sizeHi 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.phpSomething 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
In reply to: [Shortcake (Shortcode UI)] Version 0.7.0 interferes with WooCommerce ProductsI 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
In reply to: [Image Widget Deluxe] “Title” below the imageHi there,
You are welcome.
I’m not sure that I understand you correctly. Would it be possible to see an example?Forum: Plugins
In reply to: [Image Widget Deluxe] Link target not workingHi Tina
Thanks for feedback. I will check, fix and update this in the next version.
All the best
Mikkel
Forum: Plugins
In reply to: [Image Widget Deluxe] Can't select an image (tried different browsers)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
In reply to: [Image Widget Deluxe] Create Rows of ImagesHi 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
In reply to: [Image Widget Deluxe] Create Rows of ImagesHi Courtny89
Please send me a link so I can see what kind of issues your are experiencing.
All the bestForum: Reviews
In reply to: [Wrap form fields in Gravity Forms] Really useful!You are welcome.
Forum: Plugins
In reply to: [Image Widget Deluxe] Can't edit text in FirefoxHi 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 + F52. 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
In reply to: [Image Widget Deluxe] Feature requestsFeel free to rate the plugin if you like to ??