I want all variations to show at once on the product page. It is much easier to scroll on the phone or computer with a finger or mouse than to use your scroll bar or pages. I see no way to disable it.
In the front end there is a box to set the number of entries per table page. The default is 10. If we can just change the default display number, that would do it for me.
I want all variations to show at once on the product page. It is much easier to scroll on the phone or computer with a finger or mouse than to use your scroll bar or pages. I see no way to disable it.
In the front end there is a box to set the number of entries per table page. The default is 10. If we can just change the default display number, that would do it for me.
Hi Boris,
Please add the custom code below to change the default settings and display 500 variations per page. (How to add custom code? ↗):
add_filter( 'wpcvt_datatable_params_arr', function ( $params ) { $params['pageLength'] = 500; return $params; } );Best regards,
Dustin