Q: Is it possible to display the full images and their titles in the print view instead of the thumbnails?
A: With Mini version 20110815 or newer, add such a code to config.php:
if($action=='print') {
$Mini['ImgFmt'] = '<div><img src="%3$s" alt="%2$s" border="0" style="max-width:100%;"/><br/>%2$s<br/> </div>';
$Mini['LinkFmt'] = '%1$s';
# $WikiStyle['comment']['display'] = 'block';
}
If you have hidden thumbnails and want to print them too, remove the # before $WikiStyle.








For Mini version 20110811 or older, add the following code to config.php:
if($action=='print') {
$Mini['ImgFmt'] = '%2$s';
$Mini['LinkFmt'] = '<div><img src="%2$s" border="0" style="max-width:100%;"/><br/>%1$s</div>';
# $WikiStyle['comment']['display'] = 'block';
}
The above code will work for the Mini: markup, but not for lowercase mini: without links.