Saiful Islam
Forum Replies Created
-
Forum: Reviews
In reply to: [Product Table for WooCommerce] ExcelenteMany many thanks sir, for your valuable review.
Forum: Reviews
In reply to: [Product Table for WooCommerce] Super fast help A+!Thanks a lot sir.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Quantity Steps set to 1Thanks a lot.
Table in archive – is a pro feature. But in free version, u able to it.
Customize your wc archive page template from your theme and in that template: paste your table shortcode.That’s it.
In free version, you have to do it using wc hook. I mean: need little custom code.
Thanks for your solution. I will apply.
Forum: Reviews
In reply to: [Product Table for WooCommerce] It’s good, but suddenly stopped workingThis plugin is not related with any type payment method of WooCommerce. Obviously any other script/plugin issue. For any issue: plz create a topic at wp forum.
ThanksI will make same environment and try to findout that issue.
Explain environment: theme and plugins.
ThanksCan you provide your table link plz?
Forum: Reviews
In reply to: [Product Table for WooCommerce] Great plug inThank you sir, for your Great feedback.
Forum: Reviews
In reply to: [Product Table for WooCommerce] Nice and Useful PluginThank you very much.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Show related/upsells product in product pageActually this feature is not available. It’s possible by customize.
Forum: Reviews
In reply to: [Product Table for WooCommerce] badWho said review must? It’s your wish. We jsut requested.
Even u also able to User_Rating notice from Dashboard -> Product Table -> Configure.
Forum: Plugins
In reply to: [Quantity Plus Minus Button for WooCommerce] Ajax auto updateUse following Hook. it will work for any site.
Thanks<?php add_action( 'wp_footer',function(){ ?> <script> jQuery( document ).ready(function($) { let updateButton = $('body.woocommerce-cart.woocommerce-page.woocommerce-js td.actions button.button[name="update_cart"]'); $(document.body).on('change','input.wqpmb_input_text.input-text.qty.text',function(){ setTimeout(function(){ updateButton.trigger('click'); },700); }); }); </script> <?php } );- This reply was modified 4 years, 6 months ago by Saiful Islam. Reason: tab index fix from code
- This reply was modified 4 years, 6 months ago by Saiful Islam. Reason: tab index fix from code
Forum: Plugins
In reply to: [Product Table for WooCommerce] I need you to remove this anoying messageUpdate and use following filter:
add_filter('wpto_user_rating_notice','__return_false');Also There is a option for disable notice from configure page.