Any chance i can get the maximum block count increased from 99? I'm using taxonomy blocks for my menu structure to avoid a massive all-in-one menu, but i've reached the limit on some of my block outputs. I solved the problem on some of the individual blocks by simply changing the view details in MySQL, but i can't seem to find the code in the module itself which limits the block count to avoid future problems.

Comments

fraew’s picture

OK so i found the code in the end.

in views_ui.module you can change the following lines:

[946] '#size' => 2,
[947] '#maxlength' => 2,

to the more accommodating:

[946] '#size' => 3,
[947] '#maxlength' => 3,

Which allows a block containing up to 999 nodes - which is probably more than you'd ever want on a single page.

merlinofchaos’s picture

All. I thought I'd done that already too. I'll get this change into the 1.5 release when I have some free time.

merlinofchaos’s picture

Status: Active » Fixed

Now checked in.

Anonymous’s picture

Status: Fixed » Closed (fixed)