if you want, go to
spreadshop_options.php
on line 117 you see something like
<a class="btn-primary" href="<?php
if(!empty(get_option('spreadshopToken'))) {
echo(get_site_url().'/'.get_option('spreadshopSlug').'/#!/'.get_option('spreadshopToken'));
} else {
echo(get_site_url().'/'.get_option('spreadshopSlug'));
}
?>" target="_blank">Preview Shop</a>
to
<a class="btn-primary" href="<?php
$toki = get_option('spreadshopToken');
if(!empty($toki)) {
echo(get_site_url().'/'.get_option('spreadshopSlug').'/#!/'.$toki);
} else {
echo(get_site_url().'/'.get_option('spreadshopSlug'));
}
?>" target="_blank">Preview Shop</a>