 |
| Author |
Message |
flyboy17
Joined: 21 Feb 2007 Posts: 47
|
|
No images in print view |
|
Hello
I think my title is clear: how can i fix it that no images shows up in the print view?
I hope some good one knows how to do this!
Thanks
|
|
| Tue Jul 08, 2008 1:59 pm |
|
 |
Guest
|
|
|
Please login to hide the ads.
|
|
|
|
 |
FI-DD
Admin

Joined: 22 Sep 2005 Posts: 2736 Location: Germany |
|
|
|
In print.php find this:
 |  | add_filter('news-entry-content', 'link_to_text'); |
and add above:
 |  | add_filter('news-entry-content', 'remove_images');
function remove_images($output){
$output = preg_replace("/<img[^>]+\>/is", "", $output);
return $output;
} |
(Not tested.)
|
|
| Thu Jul 10, 2008 6:38 pm |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
|
 |
 |
 |
|