- 浏览: 157869 次
- 性别:
- 来自: 宁波
-
最新评论
-
cxxllove:
请教一个问题,一个43K的图片上传后,图片仍然被压缩到17K, ...
magento 1.4-- 再论如何改善前台图片质量 -
anderson916:
可以访问我的网站: http://www.magento-ch ...
magento -- 给Magento提速之缓存上的探索
文章列表
Magento遵循一般的方法使用第三方PHP库,即:将php库放到某个目录下,在php.ini或程序头部指定该目录或者父目录指定为include_path,然后程序中使用include_once相对路径包含具体引用的php文件Magento的lib目录已经默认指定为include_path里了,所以如果有3rd包如Varien放到lib目录下,有一个php文件全名为$magento_home/lib/Varien/Object.php那么在Magento的代码中只要:include_once('Varien/Object.php'); 就可以调用里面的类和函数了。
出处:http://ko ...
- 2010-04-10 22:55
- 浏览 711
- 评论(0)
$customer = Mage::getSingleton('customer/session')->getCustomer();
$customer->setData( 'group_id', '2');
$customer->save();
同理,你也可以修改用户的其它信息
- 2010-04-08 19:28
- 浏览 730
- 评论(0)
Magento的提示信息一般显示在每个页面主内容块的最上方,其中警告或错误信息为红色背景,成功信息为绿色背景。如果我们自己要添加一些提示信息可以这样操作:
成功信息
Mage::getSingleton('customer/session')->addSuccess('恭喜您关联会员卡成功!');
Mage::getSingleton('customer/session')->addError('关联失败,请检查您填写的信息是否正确!');
其中'customer/session'是指这些信息会在“我的账户”相关页面显示,如果要在购物车或 ...
- 2010-04-08 18:54
- 浏览 701
- 评论(0)
名称: Featured Products
Extension Key:magento-community/Inchoo_FeaturedProducts网址:http://www.magentocommerce.com/extension/2513/featured-products介绍:
One of the most requested feature in Magento is the ability to have a featured products. Those of you who used osCommerce, ZenCart or some other shoppi ...
- 2010-04-08 14:24
- 浏览 799
- 评论(0)
<!-- #main -->
Magento is based on MVC
model. This model helps for defining models, view (layout + templates)
and controllers. Despite big amount of modules available by
default in Magento and on Magento Connect,
you may want to create your own module and ...
- 2010-04-06 18:59
- 浏览 770
- 评论(0)
一直以来,实现畅销排行(Bestseller)的插件或自己写的模块,其核心的代码都是一致的,如下:
$products = Mage::getResourceModel('reports/product_collection')
->addOrderedQty()
//->addAttributeToSelect('*')
->addAttributeToSelect(array('name', 'price', 'small_image', 'short_descrip ...
- 2010-04-02 23:42
- 浏览 1248
- 评论(0)
想在产品页显示可配置产品所属的简单产品的库存,解决方案如下:
打开文件mage/catalog/block/product/view/type/configurable.php,大概在85行可以找到如下代码:
foreach ($this->getAllowAttributes() as $attribute) {
$productAttribute = $attribute->getProductAttribute();
$attributeValue = $product->getDat ...
- 2010-04-02 20:09
- 浏览 883
- 评论(0)
/***
*
* @see Mage_Catalog_Model_Product_Type_Configurable::getUsedProductCollection()
*
**/
//get a model to use
$product = Mage::getModel('catalog/product');
//load it up
$parent = $product->load(/* Parent Id Here */);
//get the collection
$children = Mage::getModel('catalog/produc ...
- 2010-04-02 15:39
- 浏览 939
- 评论(0)
名称: Shop by manufacturer/brand/character/etcExtension Key:magento-community/DC_Catalog网址: http://www.magentocommerce.com/extension/1921/shop-by-manufacturer-brand-character-etc---attribute-info-pages介绍: 表面上看是一个卖0.01块的收费插件,其实是免费的,详细信息可以看这里http://dot.collective.ro/magento-output/magento-shop-by-manu ...
- 2010-03-31 16:20
- 浏览 844
- 评论(0)
Magento根据官方扩展中心Magento
Connect里面扩展被下载次数的统计,列出了之前一周(1月31日至2月5日)的十大最具人气扩展。这边小做围观一下:
WYSIWYG
Editor:为管理后台相关页面添加所见即所得编辑器。(作者:Fontis)
Blog Extension:为Magento提供全套博客功能。(作者:aheadWorks)
Flash Gallery ‘Flip’ and the new extension
‘CMS Content-Editor:兼容CMS编辑模式的FLASH相册。(作者:muc1)
Enhanc ...
- 2010-03-30 16:08
- 浏览 1029
- 评论(0)
Magento采用prototype作为它的核心JS库,而prototype.js文件
有127KB之大,因为是核心库,相信也没有人会需要去改它的源代码
,既然这样,我们可以改为导入压缩后的核心文件,为前台
网页载入减轻一点负担。
下面是本人自己压缩的核心库,欢迎下载
试用prototype.min.zip
(22.77 KB)
解压后把prototype.min.js放置到\js\prototype目录下,同时修改文件\app\design\frontend\default\yourtheme
\layout\page.xml,
用
<act ...
- 2010-03-27 12:34
- 浏览 893
- 评论(0)
在Magento中,一个产品可以同时属于多个分类,下面的代码可以在产品页获得当前产品的所有父分类
$categories = $_product->getCategoryCollection();
foreach($categories as $_category) {
// do something
}
- 2010-03-25 20:48
- 浏览 1057
- 评论(0)
1.3中,reports/product_collection模块包含category_ids 属性,也就是说产品可以根据分类来过滤,但在1.4中category_ids 不存在了,分别运行以下代码可以看出reports/product_collection模块中的属性在1.3和1.4中的不同。
$_productCollection = Mage::getResourceModel('reports/product_collection')
->addAttributeToSelect('*');
$_productCollection->load();
...
- 2010-03-25 19:52
- 浏览 417
- 评论(0)
运行下面的代码,$AttrCode为新增的字段名
<?php
$setup = new Mage_Eav_Model_Entity_Setup('core_setup');
$AttrCode = 'occupation';
$settings = array (
'position' => 1,
'is_required'=> 0
);
$setup->addAttribute('1', $AttrCode, $settings);
?>
- 2010-03-25 10:24
- 浏览 790
- 评论(0)
if(empty(Mage::getModel('catalog/product_type_configurable')->getParentIdsByChild($product->getId()))
echo $product->getName();
- 2010-03-23 22:31
- 浏览 1033
- 评论(0)