Saiful Islam
Forum Replies Created
-
Are u using pro version?
by the way, we will check and provide solution asap.
As wpml is a premium plugin, so please contact with our support https://codeastrology.com/my-support
We have talked over live chat. Issue solved.
Thanks,
Saiful
CEO and Founder of CodeAstrologyUpdate your plugin to V5.1 I have fixed that issue. Please update and Let me know your latest news.
I am looking forward to hearing your response.
Thanks
Saiful
CEO and Founder of CodeAstrologyI will fix this issue today within 1 hour. Sorry for late reply.
Forum: Reviews
In reply to: [Product Table for WooCommerce] Nice Plug in for Woocommece ShopHi @climax256 This is a great review. I am glad to inform you, we get inspiration for this type great review. Thanks a lot
Forum: Reviews
In reply to: [Product Table for WooCommerce] Great & quick supportHello @hernandezvideoservices We always try to provide 247 Customer support for our plugin user.
You are great.Forum: Reviews
In reply to: [Product Table for WooCommerce] Flawless Plugin with Exceptional SupportThanks @mertcansulupinar for your beautiful review.
Forum: Reviews
In reply to: [Product Table for WooCommerce] Great plugin! Meet my needDear @villi0122 Thanks a lot for using our plugin. Actually we always try to provide 247 customer support for all customer. Your review is so inspiring
We have already added disable option at configure page. Use able to off live chat option.
<?php //COPY THIS BELLOW LINE ONLY TO PASTE IN YOUR functions.php add_filter('wcmmq_default_qty_option', '__return_true'); add_filter('wcmmq_single_product_min_max_condition', 'wcmmq_custom_default_value_enable', 10, 2); function wcmmq_custom_default_value_enable($args, $product){ if(!defined('WC_MMQ_PREFIX')) return $args; $product_id = $product->get_id(); $key = WC_MMQ_PREFIX . 'default_quantity'; $default_value = get_post_meta($product_id, $key, true); if(empty($default_value)){ $options = \WC_MMQ::getOptions(); $default_value = $options[$key]; } if(!empty($default_value) && is_single()){ $args['input_value'] = $default_value; } return $args; } /** for security perpose, we have disable default value option in our plugin. Actually it’s conflicting with all type side cart plugin. That’s why we have disable it from our plugin. But if you still want ‘default value’ option, use following code inside your theme’s functions.php file. we recommend child theme obviously. */Dear sir, chat icon for providing support to our plugin user. I will add disable button.
thanks for your Idea.
- This reply was modified 2 years, 10 months ago by Saiful Islam. Reason: Test fix
Forum: Plugins
In reply to: [Product Table for WooCommerce] Version 3.4.1 and queryIf possible, please explain whole details at CodeAstrology Support
Forum: Plugins
In reply to: [Product Table for WooCommerce] Version 3.4.1 and queryCan you update again your product table?
and let me know after check query table and publish.Please let me know.
I have to fix that issue. Plz provide your table link.Don’t copy from this topic, If you copy from this code, your code will not work. Please Go to: default value option is not working – how to enable?
add_filter(‘wcmmq_default_qty_option’, ‘__return_true’);