Category: WP / Joomla! / Magento / Shopify / Drupal / Moodle / Zimbra

Magento 获取系统设置 How to get data from Magento System Configuration

I just wandering on how I can get the configuration data for my custom module. The configuration can be set from the admin system->configuration and how to pull it in frontend? 解决: $configValue = Mage::getStoreConfig('sectionName/groupName/fieldName'); sectionName, groupName and fieldName are present in etc/system.xml file of your module. The… Read More

Magento 创建用户代码 Creating a new customer in Magento(RESTful,PHP)

$customer = Mage::getModel('customer/customer'); //$customer = new Mage_Customer_Model_Customer(); $password = 'iks123456'; $email = 'gotodiscuss@ikeepstudying.com'; $customer->setWebsiteId(Mage::app()->getWebsite()->getId()); $customer->loadByEmail($email); //Zend_Debug::dump($customer->debug()); ex… Read More

magento 1.9 用户无法登录 magento 1.9 customer can not login

Looks like an issue with form-key Go to app/design/frontend/[Your-package]/[Your-theme]/template/customer/form/login.phtml and template/persistent/customer/form/login.phtml and under Find: <ul class=”form-list”> And paste this right after the code above the following: <input name="form_key" type="hidden" value="<?ph… Read More

Magento 获取已登录用户的信息– Get Logged In Customer’s Full Name, First Name, Last Name and Email Address

// Check if any customer is logged in or not if (Mage::getSingleton('customer/session')->isLoggedIn()) { // Load the customer's data $customer = Mage::getSingleton('customer/session')->getCustomer(); $customer->getPrefix(); $customer->getName(); // Full Name $customer->getFirstname(); // First Name $customer->g… Read More

Magento 主题结构 The structure of a Magento theme

The structure of a Magento theme The files in a Magento theme are divided into two main directories: app and skin, as shown in the following screenshot: The following is the description of the two directories: app: The app/design/frontend/base/default/ directory contains the layout, translation, and template files skin: The skin/frontend/base/defa… Read More

Shopify 英文(多国语言)国际网店 注册指南

点击这里 快速注册 shopify 英文网店 可以获得14天免费试用,注册完成后 您可以设置您的网站,添加您产品,快速预览你的网店 , 开启国际电子商务之旅注册时注意以下几点 1 . 注册时使用的管理员邮箱,与paypal账户同一个邮箱,默认注册完成后绑定你的paypal账户 2.  在安装时 选择 shopify online store system 可以同时使用 shopify pos system 费用是29元一月 3. shopify 系统支持除英文以外,世界上所有国家主流语言,包括中文简体,繁体,俄罗斯文,德文, 法文,西班牙文等等,可以通过非常简单设置,来完成你所需要的国家语言, 4.  如果你只需要信用卡刷卡机器和shopify… Read More

Shopify:删除版权信息 Powered by Shopify 在网站底部

进入编辑 Edit HTML/CSS  页面. 打开 Layouts 文件夹, 点击 在 theme. 打开在线原代码编辑板. 使用键盘 Ctrl+F (或者 Cmd+F 在 Mac 系统)  搜索 {{ powered_by_link }}.如果不能找到? 每个模板有一点点不一样, 所以我们要找到这个标签有点不一样在模板文件. 或者点击这里查看 Shopify Themes 假如你不能找到你的标签 或者你有一个 制作来自 Shopify 模板. 删除 {{ powered_by_link }}来自你的模板 保存,并退出 Shopify 模板 假如正在使用 Classic, Pop, Solo or Supply, 标签在你的底部文件 footer.liquid sni… Read More

wordpress二次开发技巧-functions.php篇

前言 最近又写了个网站,也是基于wordpress,LEE周刊官网:www.leeweekly.com。这个网站和轩枫阁的部分功能有所不同,部分功能困扰了挺久,通过Google搜索到了各种解决方案,记录成文备忘。 LEE周刊新版PC官网设计开发总结:http://t.cn/RyzrUD4 functions.php 下面根据需求,对各种能实现进行简单介绍。 先对functions.php文件进行介绍,通过代码实现各功能。 1. widgets sidebar 侧边栏小工具 /** widgets sidebar 侧边栏小工具*/ if( function_exists('register_sidebar'<span… Read More

Magento教程 77:在Magento中整合CSS及Javascript

为了提升网站效能、减少HTTP requests,将众多的javascript及css整合在一起,是一件必要的工作。 关于这一方面,magento提供一个简便的方法,请参考下列教学步骤。 Step 1: 登入magento后台 依System > Configuration > ADVANCED > Developer > 找到JavaScript Settings 及CSS Settings。 Step 2: 将Merge JavaScript Files及Merge CSS Files设成Yes 。 Step 3: 记得清除cache。 让我们来看看整合前后的比较: 整合前: 整合后: 我们再利用Pingdom Website Sp… Read More

Magento教程 76:如何建立magento布景主题

Magento 设计常用名词 在开始建立布景主题之前、我们先来了解一下magento的几个名词: Website, Store, Store View Interface Themes Layouts Templates Skins Blocks Structural Blocks Content Blocks website, store, store-view magento是一个很强大的购物网站架站系统,不仅可以支援多商店,每个商店又可以有多个不同的store-view。 举例来说:欧斯瑞购物是一个购物网站,在这个网站上有B2C的商店也有B2B的商店,二个商店又各有英文、中文等不同语言版本。 Interface Interface(… Read More