rasta74
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Thanx! You point me to the right direction, on clean WP install BPS works great, I have conflict with template from themeforest.
I have same problem, after enable plugin I can’t see menu item. I use latest WP and BirchPress 1.2
Alex it’s a problem with locale settings other than English, look here: http://www.php.net/manual/en/function.round.php#80375
Hi, I resolve that problems by simply replace comma with dot.
file: edit-thumbnail.php
line: 112 -data: {x: xT, y: yT, w: wT, h: hT, action: 'createNewThumb', id: <?php echo $id; ?>, rr: <?php echo $rr; ?>}, +data: {x: xT, y: yT, w: wT, h: hT, action: 'createNewThumb', id: <?php echo $id; ?>, rr: <?php echo str_replace (',','.',$rr) ; ?>}, line: 167 -aspectRatio: <?php echo round($WidthHtmlPrev/$HeightHtmlPrev, 3) ; ?> +aspectRatio: <?php echo str_replace (',','.',round($WidthHtmlPrev/$HeightHtmlPrev, 3)) ; ?>
Viewing 4 replies - 1 through 4 (of 4 total)