Saiful Islam
Forum Replies Created
-
Forum: Reviews
In reply to: [Product Table for WooCommerce] The plugin and technical support are great!Thanks a lot for your feedback. You are great.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Only Stock Not Working for BackordersThanks for using our plugin.
you can solve your issue by using our filter:wpto_table_query_args
Filter Details: https://wooproducttable.com/plugin-api/wpto_table_query_args/
From Github: Filter in GithubExample:
if( !function_exists( 'ultraaddons_table_query_args' ) ){ /** * Query args manipulation. * using Filter Hook: wpto_table_query_args * * @param type $query_ars * @return Array */ function ultraaddons_table_query_args( $query_ars ){ $query_ars['meta_query'][] = array(//For Available product online 'key' => '_stock_status', 'value' => 'onbackorder' ); $query_ars['meta_query']['relation'] = 'OR'; return $query_ars; } } add_filter( 'wpto_table_query_args', 'ultraaddons_table_query_args' );Forum: Reviews
In reply to: [Product Table for WooCommerce] What an amazing pluginMany many thanks for your feedback.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Select products sku in shortcodeFollowing Script can help you.
if( !function_exists( 'ultraaddons_arg_manipulation' ) ){ /** * Getting SKU by shortcode Attribute * and I have explode skus by explode and * find out product id * and finally I make a array of product ids * * @param type $args * @param type $table_ID * @param type $atts * @return Array */ function ultraaddons_arg_manipulation( $args, $table_ID, $atts ) { //var_dump($args, $table_ID, $atts); $skus = $atts['skus']; $skus = explode(',', $skus); if( is_array( $skus ) ){ $prds = array(); foreach( $skus as $sku ){ $prds[] = wc_get_product_id_by_sku( $sku ); } $args['post__in'] = $prds; } return $args; } } add_filter( 'wpto_table_query_args', 'ultraaddons_arg_manipulation', 10, 3 );Forum: Plugins
In reply to: [Product Table for WooCommerce] Select products sku in shortcodefor that, u have to customize using filter hook.
Check hook list.Forum: Plugins
In reply to: [Product Table for WooCommerce] Filters based on table contentsHave you chosen [Resolved]?
No need solution?By the way, Thanks a lot for your comment and for using our plugin.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Message in orderit obviously should on order and cart. Please contact over our support https://codeastrology.com/support
ThanksForum: Plugins
In reply to: [Product Table for WooCommerce] Translation of the plugin to spanishThese text are changeable from setting. U able to set any text for these manually.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Number of reviews@liekegunther , You are most welcome.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Number of reviewsYes, you able to do it by template overriding of Woo Product Table Plugin.
Woo Product Table gives you the opportunity to Overriding templates of the columns from your theme.
You can change the contents appearance with overriding template files. Our template files could be found at woo-product-table/includes/items or if you are a pro user then you should also look at woo-product-table-pro/includes/items directory. To override via your theme simply create a directory named woo-product-table/items and copy the template files inside this directory.
See following tutorial: https://wooproducttable.com/overriding-templates-of-columns-via-a-theme/
Template List: https://github.com/codersaiful/woo-product-table/tree/master/includes/items
Now you have to program for that.
Thanks a lotForum: Plugins
In reply to: [Product Table for WooCommerce] About the codeYes, you can remove it. It’s only for reload feature based on Device Size. No need for table.
Thanks a lot for using our plugin.
You have to code for archive page properly. Otherwise it can show default loop of products.
You have to remove default loop’s code.By the way, you can use our pro version, which already functioned. Where you able enable shop/archive page table by click on a swith.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Validating quantity input rulesNot clear, what did you mean. Can you explain more? Or contact with our support.
Forum: Plugins
In reply to: [Product Table for WooCommerce] Add to cart ErrorYou are welcome.
Forum: Reviews
In reply to: [Product Table for WooCommerce] excellent supportMany many thanks for your awesome rating.