best seller 带有图片的设置
打开includes\modules\sideboxes\your_template\best_sellers.php,查找
best seller 带有图片的设置 - continue readingzen cart easypopulate 出现黄色警告的解决方法
把customers_basket_attributes和customers_basket两个表的内容清空就可以了,记住是清空不是删除。
或者直接后台执行:truncate table customers_basket_attributes; truncate table customers_basket;
出现这个的原因是购物车内有产品信息残留无法清除,会导致批量导入无法安装正常使用
3d Tag cloud 小控件代码
进入Silencer博客发现了一个有意思的控件3d Tag cloud,就去网上查了关于这个控件的安装信息和代码,现在贴出来一起看看:
3d Tag cloud 小控件代码 - continue readingzen cart 新页面添加
zen-cart程序比较复杂,新建zen-cart页面相对来说比较复杂.zen-cart网上商城程序调用更加复杂.都通过 get_template_dir 和 get_template_part来实现调用.下面就谈谈新建zen-cart页面的步骤.
1:新建模板页面.
includes\templates\template_default\templates
2:界面文字页面
includes\languages\schinese
3:逻辑处理页面
\includes\modules\pages
以上三个步骤好了之后,就完成了对zen cart系统新页面的建立
msn在线
现在有以下的接口参数就太方便了. 可在自己定义状态的图片信息等.
http://messenger.services.live.com/users/youliveid@msn.com/presence/?cb=showpresence
{
“icon”: {
“url”: “http://www.wlmessenger.net/static/img/presence/Online.gif”, “height”: 16, “width”: 16
}, “statusText”: “Online”, “status”: “Online”, “displayName”: “s.sams”, “id”: “youliveid@msn.com”
}
再结合 Newtonsoft.Json 完全实现自定义操作.
http://www.codeplex.com/Json
static void Main(string[] args)
{
string str = “{title:123,body:456,list:{title:’这是一个标题 ‘,body:’what’}}”;
JObject o = JObject.Parse(str);
Console.WriteLine(o["title"]);
Console.WriteLine(o["body"]);
Console.WriteLine(o["list"]["title"]);
Console.WriteLine(o["list"]["body"]);
Console.ReadKey();
}
更多技术文档请参阅: http://dev.live.com/Messenger/default.aspx
附上MSN在线小图标直接地址: http://messenger.services.live.com/users/youmsnid@msn.com/presenceimage/
Live 在线状态生成地址: http://settings.messenger.live.com/applications/CreateHtml.aspx
补充一下: 其实在 http://www.onlinestatus.org/ 是可以生成在线图标的, 但服务很不稳定.