{"id":4102,"date":"2018-02-13T12:59:51","date_gmt":"2018-02-13T11:59:51","guid":{"rendered":"https:\/\/demos.welaunch.io\/woocommerce-variations-table\/?post_type=faq&p=639"},"modified":"2020-07-30T14:54:59","modified_gmt":"2020-07-30T12:54:59","slug":"modify-variations-table-datatables-options","status":"publish","type":"faq","link":"https:\/\/www.welaunch.io\/en\/knowledge-base\/faq\/modify-variations-table-datatables-options\/","title":{"rendered":"Modify Variations Table DataTables Options"},"content":{"rendered":"

You can modify the settings of a variations datatable with our filter. The filter to use is “woocommerce_variations_table_datatables_options”.<\/strong><\/p>\n

In this example for the product ID 581 we disable the filtering and for product 605 we enable paging.<\/p>\n

add_filter( 'woocommerce_variations_table_datatables_options', 'datatable_options', 10, 1 );\r\nfunction datatable_options($options) {\r\n\tglobal $product;\r\n\t$product_id = $product->get_id();\r\n\r\n\tif($product_id == 581) {\r\n\t\t$options['searching'] = true;\r\n\t\t$options['filtering'] = false;\r\n\t\t$options['buttons'] = array();\r\n\t}\r\n\tif($product_id == 605) {\r\n\t\t$options['searching'] = true;\r\n\t\t$options['filtering'] = false;\r\n\t\t$options['paging'] = true;\r\n\t\t$options['ScrollCollapse'] = true;\r\n\t\t$options['scrollY'] = '450px';\r\n\t\t\r\n\t\t$options['buttons'] = array();\r\n\t}\r\n\r\n    return $options;\r\n}\r\n<\/pre>\n","protected":false},"author":1,"featured_media":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","product_cat":[],"class_list":["post-4102","faq","type-faq","status-publish","hentry","faq_topics-variations-table-filter-hooks"],"_links":{"self":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq\/4102","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq"}],"about":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/types\/faq"}],"author":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/comments?post=4102"}],"version-history":[{"count":4,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq\/4102\/revisions"}],"predecessor-version":[{"id":5589,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/faq\/4102\/revisions\/5589"}],"wp:attachment":[{"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/media?parent=4102"}],"wp:term":[{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/www.welaunch.io\/en\/wp-json\/wp\/v2\/product_cat?post=4102"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}