• Can you please help me with one thing? You can ignore all the other support questions if you like.

    I just want to change the size of images for miniPhoto. There are only 60px by 60px now. I want to make them 120px by 120px. Where is the code that makes 60px x 60px images? Is there and easy way to edit the PHP to make them 120px x 120px?

Viewing 1 replies (of 1 total)
  • Plugin Author Jacques Malgrange

    (@sojahu)

    Hi,

    You can use a filter to do this : rencImgSize(array)

    function myRencImgSize($size) {
    foreach($size as $k=>$v) {
    if($v['label']=='-petite') $size[$k] = array('label'=>'-petite', 'width'=>120, 'height'=>120, 'quality'=>75);
    }
    return $size;
    }
    add_filter('rencImgSize', 'myRencImgSize', 10, 1);

    How-to

    Regards

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.