Hi,
I had the same problem, i because you get no answere, I fixed it by myself.
How? I toke an older version, and replace same code.
What you must do:
Go to https://www.yourdomain.com/wp-content/plugins/wordpress-simple-website-screenshot/simplewebsitescreenshot.php
Open this file.
Replace the content i that file, with this file:
<?php
/*
Plugin Name: WordPress Simple Website Screenshot
Plugin URI: https://www.digg-it.info/wordpress-simple-website-screenshot-v-0-5
Description: Make simple website screenshot via shortcode without watermark.
Version: 0.5
Author: Pigi
Author URI: https://www.digg-it.info
License: GPL2
*/
/* Copyright 2010 Pigi (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once(‘screenshot_menu.php’);
function screenshot($atts) {
extract(shortcode_atts(array(
“url” => ‘www.’
), $atts));
extract(shortcode_atts(array(
“width” => ‘width’
), $atts));
extract(shortcode_atts(array(
“height” => ‘height’
), $atts));
$sc_default_width = get_option(‘default_width’);
$sc_default_height = get_option(‘default_height’);
return ‘
<img src=”https://s.wordpress.com/mshots/v1/http%3A%2F%2F’.$url.'” width=”‘.$sc_default_width.'” height=”‘.$sc_default_height.'” border=”0″><bt />
<hr>
‘;
}
add_shortcode(‘screenshot’, ‘screenshot’);
?>
Maybe it is not a nice way, but before there is a solution, you can you it now.
Have fun!