• where in the code i can resize members images?
    in dating page and search results page.
    this very small and if i resize in css, the picture lost quality.

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

    (@sojahu)

    Hi,

    Add this filter in your function.php of your theme :

    add_filter('rencImgSize', 'myImgSize',10,1);
    function myImgSize($size)
    	{
    	foreach($size as $k=>$v) if(isset($v['label']) && $v['label']=='-mini') {
    		$size[$k] = array('label'=>'-mini', 'width'=>120, 'height'=>120, 'quality'=>75); // new size : 120 x 120
    		// available : -mini (60x60), -grande (250x250), -libre(141x108)
    		}
    	return $size;
    	}
    

    Regards

    Thread Starter dimanep

    (@dimanep)

    thank,but upload image stop working.

    Thread Starter dimanep

    (@dimanep)

    working good if resize from file rencontre_filter in folder “inc”
    but in chrome not working upload photo.

    Thread Starter dimanep

    (@dimanep)

    all work! after disable chrome plugins!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘resize members images’ is closed to new replies.