Hi all,
I'm working with a customized zpmobile theme. In the admin page, the max. size of the picture is limited to 595 px and greyd out. I found a post explaining it with layout reasons.
C'ause I have rised the width of the mainpage to 1260 px, I wish to enlarge the pictures to 640 px. I didn't find the spot to adjust it. Any help?
Thx
imagepet
Comments
`
function getOptionsDisabled() {
return array('custom_index_page', 'image_size', 'thumb_size');
}
`
Change it to:
`
function getOptionsDisabled() {
return array('custom_index_page', 'thumb_size');
}
`
so the "Image size" option becomes available again.
Thx, it works.