Quick updates是个非常有用的插件,可以快速更改产品信息,但是我最喜欢的是他的复制功能。毕竟对于产品站来讲,很多产品的信息相差不大,所以完全可以批量复制后再作些小的修改就可以了。默认的一次最多可以复制10个。一定有象我一样的菜鸟希望一次复制更多,100个,500个,10000个……
其实方法很简单,小小修改下代码就OK了。打开quick_updates.php{admin文件夹里},找到代码:
$array[] = array(‘id’ => 0,’text’ => ‘0x’);
$array[] = array(‘id’ => 1,’text’ => ‘1x’);
$array[] = array(‘id’ => 10,’text’ => ‘10x’);
修改为你想要的复制个数,比如:
$array[] = array(‘id’ => 0,’text’ => ‘0x’);
$array[] = array(‘id’ => 1,’text’ => ‘1x’);
$array[] = array(‘id’ => 10,’text’ => ‘10x’);
$array[] = array(‘id’ => 20,’text’ => ‘20x’);
$array[] = array(‘id’ => 50,’text’ => ‘50x’);
$array[] = array(‘id’ => 100,’text’ => ‘100x’);
$array[] = array(‘id’ => 200,’text’ => ‘200x’);
$array[] = array(‘id’ => 500,’text’ => ‘500x’);
$array[] = array(‘id’ => 1000,’text’ => ‘1000x’);
——–
OK,其实就这么简单。
{http://www.sem580.com/zen-cart-quick_updates-copy-products.html}




News