New version got new features: – Google currency conversion mechanism was added in addition to existing in e-Commerce core. – Advanced settings page added for switching between different conversion mechanisms. You can take it from here of in your WordPress plugin manager.
Tag: convert
e-Commerce multi-currency support 0.4.5
Thanks to Leif Moldskred, a developer of SOALZA.com, who helped me to improve 2 main problems: – replacement of currency symbols – conversion in Product Cart. As soon as version 0.4.5 is out. You can take it from here of in your WordPress plugin manager.
Bash script to resize images
To make sure that this script works correctly, check that ImageMagic pack is installed on your Linux machine. #! /bin/bash dir=$1 target_dir=$2 mkdir -p $target_dir list=`ls -1 $1` for i in $list do echo $i convert $dir/$i -resize 50% $target_dir/$i done Usage: ./convert_50.sh Pictures/temp/ Pictures/temp_new This will resize all images in location Pictures/temp/ for 50%… Continue reading Bash script to resize images