I added a code snippet to my wordpress so I can rearrange variations easier. The default 15 variations per page isn’t enough. The code snippet works but there is an issue with saving now. I tried 50 variations and have worked my way all the way down to 20 and any changes I make won’t save. I just get the progress circle spinning endlessly and nothing happens. Is there something going on with memory in wordpress? Can I change anything to help make this work?
This is the code I used:
add_filter( ‘woocommerce_admin_meta_boxes_variations_per_page’, ‘handsome_bearded_guy_increase_variations_per_page’ );
function handsome_bearded_guy_increase_variations_per_page() {
return 50;
}

Very likely hitting memory limits. Anything showing in the php.errors.log?