国际电子商务技术 & Magento开发公司

Maishen technologies

Welcome visitor! You canlogin orcreate an account.

热线:+86-0532-58973093

麦神科技有限公司
Mygod Technologies

官方认证开发工程师

查询网站的备案信息

2012年8月6日星期一 Asia/Shanghai上午10:28:08

 

在国内备案的空间,是可以查询的,下面的网站是查询的网址,在里面输入域名即可查询到具体的备案信息!

http://icp.aizhan.com/

0 Comments | Posted in magento日常所用 By terry water

magento 在线聊天工具

2012年7月24日星期二 Asia/Shanghai上午9:16:47

1

聊天工具的安装

现在很多聊天工具都是免费30天,然后收费的,免费的,用的好的很少

下面是一款我们感觉很不错的聊天工具,zopim livechat

2

使用

登录网址:www.zopim.com

注册账号。完成后登录。

登录成功后点击dashboard

 

进入后,点击右侧的setting

 

3

复制这里的代码

 

复制出来,然后到magento网站找到文件

App/design/frontend/your package/your template/template/page/html/footer.phtml文件

在文件的底部把这个代码复制进去,刷新缓存即可!

这个聊天工具的各个版本的差别如下:

 

天下没有免费的午餐,都是为了让我们消费,人家才提供服务器免费使用,呵呵

0 Comments | Posted in magento日常所用 By terry water

magento的菜单中加入自己的一些其他链接

2012年7月14日星期六 Asia/Shanghai上午9:24:09

magento的菜单是无限极菜单,在实际过程中,3级菜单已经足够我们使用,我们可以使用custom-menu这款插件实现三级菜单,譬如我们的仿tidebuy模板,现在我们想做的是在菜单的最后加入我们自己的一些链接,譬如在菜单后面加入blog,forum,contact-us等一些非产品分类目录。

方法:

找到地址template/webandpeople/custommenu/top.phtml文件打开

找到代码:

<div id="custommenu">
        <?php if ($this->showHomeLink()) : ?>
        <div class="menu menu1">
            <div class="parentMenu">
                <a class="terr101" href="<?php echo $this->getUrl('') ?>">
                    <span><?php echo $this->__('Home'); ?></span>
                </a>
            </div>
        </div>
        <?php endif ?>
        <?php foreach ($_categories as $_category): ?>
            <?php echo $this->drawCustomMenuItem($_category) ?>
        <?php endforeach ?>
        <div class="clearBoth"></div>
    </div>

代码添加位置如下:

<div id="custommenu">
        <?php if ($this->showHomeLink()) : ?>
        <div class="menu menu1">
            <div class="parentMenu">
                <a class="terr101" href="<?php echo $this->getUrl('') ?>">
                    <span><?php echo $this->__('Home'); ?></span>
                </a>
            </div>
        </div>
        <?php endif ?>
        <?php foreach ($_categories as $_category): ?>
            <?php echo $this->drawCustomMenuItem($_category) ?>
        <?php endforeach ?>

//添加您自己链接!
        <div class="clearBoth"></div>
    </div>

添加完成后,就完成任务了,OK,搞定!

0 Comments | Posted in magento日常所用 By terry water

Magento 语法

2012年7月5日星期四 Asia/Shanghai下午3:03:08

通过sku得到产品的方法:
$product Mage::getModel('catalog/product')->loadByAttribute('sku',$sku);
给产品增加相关产品的方法:
$param = array(
           
101=>array(
                  
'position'=>3
            
),
            
102=>array(
                  
'position'=>5
            
)
);
$_product->setRelatedLinkData($param);
//here ... some other product operations and in the end
$_product->save();
OK!
0 Comments | Posted in magento日常所用 By terry water

在购物车页面显示产品的sku

2012年6月21日星期四 Asia/Shanghai下午7:08:43

在购物车页面显示产品的sku,详细的代码如下:

<div>

SKU:

<?php

if (is_object($this->getChildProduct())):    

        echo $this->getChildProduct()->getSku(); 

      else:      

      echo $_item->getSku();     

endif; ?>

</div>

把上面的代码加到app\design\frontend\default\default\template\checkout\cart\item\default.phtml

找到你想显示的地方加进去就行了!

0 Comments | Posted in magento日常所用 By terry water
 
  • Mygod Technologies
  • 麦神科技有限公司
  • 香港中路8号
  • 中铁青岛中心大厦A3001
  • 市南区, 青岛, 266000
  • 电话: 0532-5897-3093

订阅我们的最新消息。

我们将严格尊重您的隐私。

关注我们的微信
获取外贸电子商务最新资讯;跨境推广最新策略;电子商务网站技术最新趋势。

2018 Mygod Technologies. 保留所有权. Privacy Policy