[Plugin: WPeMatico] Read this if you want large images
-
The plugin is great but it only pulls in the thumbnail version of the image. If you want the code change below it will pull in the large version of the photo.
Find the file:
campaign_fetch_functions.phpBackup the file, in case you make a mistake. This is tested with version 1.
add this line after line 259:
$imagen_src = str_replace(‘_s.’,’_n.’, $imagen_src);So the new section will read:
}else {
$imagen_src = str_replace(‘_s.’,’_n.’, $imagen_src);
$imagen_src_real = $this-getRelativeUrl($itemUrl, $imagen_src);This pulls in the large version of the facebook photo.
If the developer reads this I think users would like to have the ability to grab the large photo, you might consider this change for new versions.
Brian
- The topic ‘[Plugin: WPeMatico] Read this if you want large images’ is closed to new replies.