WP Titan Labs
Forum Replies Created
-
As we have not heard back from you since a while we are marking this topic as resolved. But please feel free to write and if you have further questions.
As we have not heard back from you since a few week we are marking this topic as resolved. But please feel free to write and if you have further questions.
As we have not back from you in a while week we are marking this topic as resolved. But please feel free to write and if you have further questions.
Forum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Pro plugin conflict with DiviThe issue was resolved. It was not a conflict with Divi theme. It was a conflict with another third-party module.
Forum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Double buttonsHi @gormer,
Thank you for using my plugin WooCommerce Product Table Lite and writing in with your query. There is no known issue with the plugin creating duplicate buttons. This might be happening if there is a conflict with another module on your site. You can follow the ‘Debugging Steps’ on the support page to find out which module is interfering with the table.
I tried checking your site link but it is not working right now. You might want to send the link privately perhaps.
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikHi @0jthomps0,
Thank you for your query about my plugin. I will be happy to answer.
You can replace the default grade on the product category, search, shop, attribute and tag pages with product tables of a choice which will automatically show the correct products based on the product archive page.
Please see FAQs > Archive override > How can I replace the shop product grid with a table? Can I also do this for search, category, and attribute pages?
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikHi Chris,
Thank you for your query about my plugin WooCommerce Product Table. I will be happy to answer.
In the PRO version of the plugin there is a Shortcode element that can take in 3rd party plugin shortcodes. It works for most plugin’s shortcodes out of the box. But for some shortcodes special integration is required.
You can ask the other plugin’s developer if their shortcode uses global $product to print out the result. And if they can confirm yes, then the Shortcode element in the PRO version will work for your requirement.
Please let me know if you have any further questions.
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikHi,
Thank you for your query about my plugin WooCommerce Product Table. I will be happy to answer.
Yes, you can make the table only show products that match all the selected categories (not just any single selected category).
This facility is available in the PRO (premium) version of the plugin which has dozens of other options to fine tune your product query and enhance table presentation. The shortcode option you need to use is cat_operator=”AND” once you have the PRO version installed.
Please let me know if you have any further questions.
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikForum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Pro plugin conflict with DiviHi Marie,
Thank you for your query about my plugin WooCommerce Product Table. So far I have not come across such an issue with Divi theme settings. No other users of the plugin have reported this issue either.
I will be happy to check why this issue is happening on your site and help resolve it for you. Please write in via the support form so we can connect over mail and look into resolve this issue.
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikForum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Custom product queryHi! As I have not heard back from your in a while I am assuming this requirement is resolved and closing this topic. Please feel free to reopen if you have further questions on this or any other topic related to the plugin!
Hi @tejasrinivasvk,
Thank you for query. You are facing this issue because you are not using the plugin feature that you are supposed to use here. When you want to show product tables on the shop, search, category etc product archive pages you need to use the plugin’s archive override feature. Please see plugin FAQs > archive override > How can I replace the shop product grid with a table? Can I also do this for search, category, and attribute pages?
Normally you create a new product table and simply print it out with a shortcode on any page of your website. These tables will show your products based on the settings in their query tab.
But when you are trying to show product tables on your product archive pages you want them to catch the product results being printed on that specific product archive page and show them in the table. In this case you need to use the special archive override facility explain in the FAQ above.
The process is simple and straightforward but you do need to use the facility properly to make the table’s show your archive page product results in the table.
I hope this information helps! Please feel free to write in if you have further questions.
Regards
KartikForum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Custom product queryHi Marco,
Thank you for your query about my plugin. I will be happy to answer.
Yes, what you want can be easily achieved with the plugin hooks. Please see the plugin’s docs > developer API >
wcpt_query_argsfilter hook.You can use this filter hook to modify the product query arguments used by the table. In this case you might want to use the post__in key to add your custom set of post ids.
See a code example below:
// custom query for product table add_filter( 'wcpt_query_args', 'custom_query_args' ); function custom_query_args( $query_args ) { $table_data = wcpt_get_table_data(); // table data if( $table_data['id'] == '123' ){ // target table id $post__in = array(); // add your custom post ids $query_args['post__in'] = $post__in; // insert your custom arg } return $query_args; }Notes on the above code:
- We are hooking into the product query before the table prints the products as we wish to modify the query args.
- First we check if we are currently working on the table we want to target by looking up current table data and settings a condition against its id.
- Then we replace the post__in key of the query args with our own array of product ids and return it to the table.
I hope this information helps! Please feel free to write in if you have further questions.
Useful plugin links: Tutorials | Documentation | FAQs
Regards,
KartikHi, as I have not heard back from you in over a week I am closing this topic. Please feel free to write in if you have further questions.
Forum: Plugins
In reply to: [Product Table & List Builder For WooCommerce] Stripping HTML from excerptThe update is released. Please use it and this issue will be fixed for you.
Hi Selim,
Thank you for using WooCommerce Product Table Lite and writing in with your query. I will be happy to look into the issue you are facing and help resolve it. However, you don’t seem to be using the plugin on the page you linked currently. Perhaps you could create a new page and build the table there and send that link over.
Regards,
Kartik