Magento中获取特定属性值?php echo $_product-getResource()-getAttribute(attr)-getFrontend()-getValue($_product); ?//or?php echo $_product-getAttributeText(attr); //string or array ?...
Magento前台自主获取属性
Magento前台获取属性(自主获取),代码不多,只有一句,留作备用 $_product-getResource()-getAttribute(属性名)-getFrontend()-getValue($_product)...
PHP+Memcache统计当前在线人数
废话不多说,直接上代码! $memcache = new Memcache (); $memcache -connect ( 127.0.0.1, 11211 ); // 获取 在线用户 IP 和 在线时间数据 $online = $memcache -get ( online ); // 为空,初始化数据 if (! $online ) { $...
获得Magento全部Api方法
获取Magento全部Api方法的代码 其中的ApiUser和ApiKey为网站后台添加的WebService用户的连接信息,换成你自己的。 Magento官方文档见: Magento core Api ! DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transition...
Magento去除Widget Link生成的URL后商店码
原始链接:http://www.***.com/new-arrival.html?___store=default 处理链接:http://www.***.com/new-arrival.html 具体步骤: 1,仔细观察widget生成url的block: {{widget type=catalog/category_widget_link anchor_text=New Arr...
Magento批量导入CSV文件各字段说明
字段名称 字段备注 字段值示范 其它说明 store 网站的store,基本上填admin admin websites 网站的websites,默认是base,如有支持多个website,就填指定的websites base attribute_set 商品对应的属性,默认是...
magento给My Account等链接增加nofollow标签
Magento里面头部的My Account,Log In,My Wishlist几个链接都是通过xml布局文件进行调用的,为了SEO分配权重必须为它们加上nofollow标签,但它的链接并不是普通的HTML代码,所以想加nofollow标签就...
Magento PayPal提示订单地址无效解决方案
Magento PayPal提示错误提示: Unable to process payment. Please contact the merchant as the shipping address provided by the merchant is invalid, and the merchant has requested that your order must be shipped to that address. 文件:...
magento中给form添加输入验证
在magento中添加一个form,可以使用magento本身就有的输入验证功能,今天给大家介绍下如何使用. magento中form使用验证: form action =?php echo Mage::getUrl(********) ? method =post id =test-form ul li label...
Magento多语言URL切换问题
今天最模板zuimoban网站模板来分享一下Magento 多语言URL切换的问题,通常在SEO角度还是用户体验方面,URL的友好很重要。用户能看懂是一方面,最重要还是搜索引擎能够懂。 平时的时候...