Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #4537024
No option to disable pagination or scroll bar
Open

Comments

  • Boris Popovic started the conversation

    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.

  •  1,688
    Dustin replied

    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