2014年7月25日

magento中的各种form标签

摘要: 1. Text Field $fieldset->addField('title', 'text', array( 'label' => Mage::helper('form')->__('Title3'), 'class' => 'required-entry', 'required' => tr... 阅读全文

posted @ 2014-07-25 16:48 冯亮 阅读(1320) 评论(0) 推荐(0) 编辑

2014年7月18日

js中调用mangeto的js翻译

摘要: 第一步: 第二步: 在你模块的etc文件夹下创建jstranslator.xml,并添加一下内容 Please select an option. 第三步Translator.translate('Some phrase'); 阅读全文

posted @ 2014-07-18 18:51 冯亮 阅读(277) 评论(0) 推荐(0) 编辑

在自定义的js验证规则中调用magento的VarienForm方法验证表单

摘要: js部分html中的调用__('Login') ?> 阅读全文

posted @ 2014-07-18 18:35 冯亮 阅读(1483) 评论(0) 推荐(0) 编辑

2014年6月24日

How to change a product dropdown attribute to a multiselect in Magento

摘要: First, update the attribute input type to multiselect:UPDATE eav_attribute SETentity_type_id = '4',attribute_model = NULL,backend_model = 'eav/entity_... 阅读全文

posted @ 2014-06-24 18:17 冯亮 阅读(195) 评论(0) 推荐(0) 编辑

magento 获取attribute的所有option

摘要: $attribute = Mage::getSingleton('eav/config')->getAttribute('catalog_product', 'color');if ($attribute->usesSource()) { $options = $attribute->getSour... 阅读全文

posted @ 2014-06-24 14:56 冯亮 阅读(289) 评论(0) 推荐(0) 编辑

2014年6月3日

在mangento后台调用wysiwyg编辑器

摘要: 在mangento后台调用操蛋的wysiwyg编辑器:1.在头部加载TincyMCE protected function _prepareLayout() {parent::_prepareLayout();if (Mage::getSingleton('cms/wysiwyg_config')... 阅读全文

posted @ 2014-06-03 18:30 冯亮 阅读(292) 评论(0) 推荐(0) 编辑

2014年5月23日

正则式匹配数字字符串中的数字

摘要: ^(10)[\,.]*|.\,(10)\,.|.\,(10)$ 阅读全文

posted @ 2014-05-23 21:30 冯亮 阅读(195) 评论(0) 推荐(0) 编辑

2014年5月7日

use magento default datepicker plugin in your project

摘要: js_csscalendar/calendar-win2k-1.csscan_load_calendar_js--> jscalendar/calendar.jscan_load_calendar_js--> jscalendar/lang/calendar-en.jscan_load_calend... 阅读全文

posted @ 2014-05-07 15:49 冯亮 阅读(192) 评论(0) 推荐(0) 编辑

2014年4月14日

Colorbox cannot load the image added by js

摘要: As we know, Colorbox is a wonderful js plugin. I came up against a head-banged problem in v1.5.6. When I add some images to the group, Colorbox cannot... 阅读全文

posted @ 2014-04-14 00:14 冯亮 阅读(214) 评论(0) 推荐(0) 编辑

2014年4月12日

deal with 'non-admin area' warn

摘要: We usually use the follow code to delete product in Magento$product = Mage::getSingleton('catalog/product')->load($productId);$product->delete();Of course, you are given a warn from magento. To solve this problem, you should add the follow code before and after delete Mage::register(&# 阅读全文

posted @ 2014-04-12 19:53 冯亮 阅读(167) 评论(0) 推荐(0) 编辑

导航