magento
文章平均质量分 62
haohappy2
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
magento template hints configuration
打开文档 app/code/core/Mage/Core/etc/system.xml找到如下代码段<template_hints translate="label"> <label>Template Path Hints</label> <frontend_type>select</frontend_type> &l..原创 2013-07-31 14:29:48 · 158 阅读 · 0 评论 -
How to add new header of Magento page
第一步: 找到 /app/design/frontend/default/default/template/page/html 复制header.phtml为另外一个文件,例如header2.html 第二步: /app/design/frontend/default/default/layout 修改page.xml 你可以直接复制与header有关的Block并且把命题替换成上一步中...原创 2016-11-04 09:25:29 · 194 阅读 · 0 评论 -
How to show all APIs in Magento
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/htm原创 2016-09-05 16:25:28 · 144 阅读 · 0 评论 -
Solution of managing magento and other plateform data
现在用Magento来建国内B2C网站的越来越多了,而淘宝是国内电子商务界的老大,这也就带来一种现象就是,使用Magento做独立B2C运营的公司,必然也会在淘宝上开个店。这就带来了一个很现实的问题,如何统一去管理淘宝店和独立官网的数据,比如订单,比如产品数据、库存等。这里分享我所知道的三种方案第一种,开发独立的第三方订单处理系统,通过淘宝api抓淘宝订单,通过Magento的api抓Mage...原创 2016-08-31 15:02:55 · 140 阅读 · 0 评论 -
how to invoke API using magento
$_SOAP = new SoapClient('http://192.168.1.25/magento/index.php/api/soap/?wsdl'); $sessionId = $_SOAP->login('patrick', '123456'); $orderList = $_SOAP->call($sessionId, 'sal...原创 2016-08-31 14:54:55 · 127 阅读 · 0 评论 -
How to add custom fields in magento
Magento Provides the default customer registration form with very few fields like name,email,pwd etc. But in realtime we need to get more details from the customer during registration. In order to a...原创 2013-09-06 17:25:15 · 139 阅读 · 0 评论 -
E-Commerce Resource
Frameworkhttp://www.javaeye.com/news/13510 Assetshttp://www.javaeye.com/news/13543 http://www.javaeye.com/news/13553原创 2013-09-06 14:04:05 · 125 阅读 · 0 评论 -
Merge the order of Magento and TBao ...
现在用Magento来建国内B2C网站的越来越多了,而淘宝是国内电子商务界的老大,这也就带来一种现象就是,使用Magento做独立B2C运营的公司,必然也会在淘宝上开个店。这就带来了一个很现实的问题,如何统一去管理淘宝店和独立官网的数据,比如订单,比如产品数据、库存等。这里分享我所知道的三种方案第一种,开发独立的第三方订单处理系统,通过淘宝api抓淘宝订单,通过Magento的api抓Mage...原创 2013-09-06 13:50:21 · 125 阅读 · 0 评论 -
Magento Popular Free Template
In this blog, you can download more exclusive and attractive Magento themes compatible with Magento 1.4, 1.5 and 1.6 as well.Download FREE Magento Themes:1. Magento Bluescale ThemeSource: we...原创 2013-09-03 17:30:28 · 124 阅读 · 0 评论 -
Create Custom Category Block in Magento
<?php $cats = Mage::getModel('catalog/category')->load(2)->getChildren(); $catIds = explode(',',$cats);?><ul><?php foreach($catIds as $catId): ?> <li> <...原创 2013-09-03 15:25:06 · 106 阅读 · 0 评论 -
How to show total shopping cart price in Magento Header
If you go to pretty much any e-commerce site you will see in the header your quick cart details, these will consist of how many items are in your basket and how much your current total is. ...原创 2013-09-03 15:14:59 · 134 阅读 · 0 评论 -
How to List Orders by Order Status using Magento API
SOAP<?php$soapclient = new SoapClient('');$sessionId = $soapclient->login('YourAPIUser', 'YourAPIKey'); // Webservice User and API Key// Getting Order listing by Order Status// Exa...原创 2013-09-03 15:10:54 · 135 阅读 · 0 评论 -
Magento: Bulk upload for the product image
Many users have reported issues when trying to import images using the default Import/Export within Magento. I too have suffered this headache. Luckily, I have figured out a way to bypass any issues...原创 2013-08-30 16:12:50 · 155 阅读 · 0 评论 -
how to user static block in Magento
Static Block是Magento提供的非常实用的一种Block类型。通过Static Block,可以让不懂代码的店铺管理员轻易修改网站中的一些动态内容,而不需要修改Magento的核心代码。Magento Static Block的创建相当简单,通过后台CMS->Static Block即可查看或新建Static Block。建立完毕之后,可以在任意的Magento页面添...原创 2016-11-04 09:33:23 · 218 阅读 · 0 评论
分享