[prisna-google-website-translator]
magento设置订单状态代码详细分析
Magento订单 有两个状态变量:state和status,这让人困惑,只有测试下了,于是下了个单,然后在Magneto后台处理订单,得出下面的Magento订单状态值 1. 新订单 state : new status : pending 2. 配送后 state : processing status : processing 3. 收款后 …
magento 分类页调取图片
<?php if($category->getThumbnail()): ?> <a href="<?php echo $category->getURL(); ?>" title="<?php echo $category->getName(); ?>"> <img src="<?php echo Mage::…
magento 1.9 添加产品id 重置从1开始
SET FOREIGN_KEY_CHECKS = 0; TRUNCATE TABLE `catalog_product_bundle_option`; TRUNCATE TABLE `catalog_product_bundle_option_value`; TRUNCATE TABLE `catalog_product_bundle_select…
magento 1.9 调取静态块
.phtml 页面调用 <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('order_form')->toHtml() ?> Content中调用 {{block type="cms/block" name="cms_test_block" block_i…
magemto 1.9 清除所有的产品订单客户数据
################### #BESTSELLERS ################### SET FOREIGN_KEY_CHECKS=0; TRUNCATE catalogsearch_query; TRUNCATE catalogsearch_fulltext; TRUNCATE catalogsearch_result; AL…
magento 1.9 后台密码重置
找到admin_user这张表然后找到管理用户名admin,把password 修改为 0192023a7bbd73250516f069df18b500 ,这个是已经MD5加密过的 然后你就可以用 用户名:admin 密码:admin123 登陆了。
magento目录结构说明,Magento文件夹结构说明,Magento folder structure
/app – 程序根目录 /app/etc – 全局配置文件目录 /app/code – 所有模块安装其模型和控制器的目录 /app/code/core – 核心代码或经过认证得模块,如果要升级不要这里的代码 /app/code/community – 社区版的模块目录 /app/code/local – 定制代码目录 /app/code/core…
owl2 回调函数
回调的参数 function callback(event) { // Provided by the core var element = event.target; // DOM element, in this example .owl-carousel var name = event.type; // Name of the event,…