I would like to be able to print off a whole topic complete with images too. I am using SMF 1.1.11 and the string is not the same. I think it is now :-
'print' => array('text' => 465, 'image' => 'print.gif', 'lang' => true, 'custom' => 'target="_blank"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),
I am no PHP programmer so don't know how to alter this string to include the images as per the advice in the quoted post. Can anyone help?
I think the same. I Edit myself
The solution was in the forum. This works for me.
In my theme directory. Display.template.php
Find
$buttonArray[] = '<li class="print"><a href="' . $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0" target="_blank">' . $txt[465] . '</a></li>';
Replace with
$buttonArray[] = '<li class="print"><a href="' . $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0;images" target="_blank">' . $txt[465] . '</a></li>';
So simple.