This is a bug I mentioned in my post here. The variable $class is not initalized.
To fix it, open bootstrap_shortcodes.php in your editor and go to line 1734. Insert the line
$class = "";
so that the code looks like this:
$class = "";
$class .= ( $atts['type'] ) ? 'img-' . $atts['type'] . ' ' : '';
$class .= ( $atts['responsive'] == 'true' ) ? ' img-responsive' : '';
$class .= ( $atts['xclass'] ) ? ' ' . $atts['xclass'] : '';
Sorry, I have overlooked this.
Everything is fine now!
Thank you,
Mario
I’m sorry to tell that the problem still persists for me.
The graph shows ~4000 hits, the statistic view shows 11300.
http://postimg.org/image/9bvg4o6m3/
I’m using version 9.1.2
Thanks, Mario