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

Maishen technologies

Welcome visitor! You canlogin orcreate an account.

热线:+86-0532-58973093

麦神科技有限公司
Mygod Technologies

官方认证开发工程师

magento改colorchart颜色块

2013年2月2日星期六 Asia/Shanghai下午5:57:56

Magento产品详细页面sizechart修改

js如下

<script>jQuery(function(){ if(typeof(jQuery("div").attr("to")!="undefined")){

jQuery("div[to]").click(function(){ $a=jQuery(this).attr("to"); $b=jQuery(this).attr("title"); $url="<?php echo Mage::getBaseUrl() ?>"+"skin/frontend/maishen/tidebuy/images/"+$a+".jpg"; //alert($url); $html='<img  src='+$url+' ><span>'+$b+'<span>'; jQuery(this).parent().siblings("dt").html($html);});   }});</script>

模板文件参看productcolor.phtml,样式省略.ok.

0 Comments | Posted in Magento优化 By lei sheng

Magento 建站 终极指南

2013年2月2日星期六 Asia/Shanghai上午11:48:22

这是针对外贸B2C 行业利用Magento 建站的终极指南,其中包含客户体验角度,服务器角度,Magento SEO 角度。将为您打开视野,掌控全局。

Read More
0 Comments | Posted in Magento优化 By terry water

magento 怎么修改产品详细页面的 表单样式和动作

2013年2月1日星期五 Asia/Shanghai下午6:23:54

因为magento的表单的一般都是动态生成的,所以改起来很麻烦,我们需要做的一般就只能截断循环体中加判断

,比如我修改了一个文本框的js就必须要截取循环.代码如下.

<?php $_option = $this->getOption(); ?><dt  <?php  if(in_array($_option->getTitle(),array('Bust','Hips','Waist','Height','Hollow to Floor'))){echo 'style= "padding: 0;width: 200px;" ';}?>><label<?php if ($_option->getIsRequire()) echo ' class="required"' ?><?php if($_option->getTitle()=='Add remark'){echo '  style="margin-top: 20px;"';echo 'value="aaaa"';}?>><?php if ($_option->getIsRequire()) echo '<em>*</em>' ?><?php echo  $this->htmlEscape($_option->getTitle()) ;if(in_array($_option->getTitle(),array('Bust','Hips','Waist','Height','Hollow to Floor'))){echo "  (Inch) ";}?> :</label>    <?php echo $this->getFormatedPrice() ?></dt><dd<?php if ($_option->decoratedIsLast){?> class="last"<?php }?>>    <div class="input-box">    <?php if ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_FIELD): ?>        <input type="text" onchange="opConfig.reloadPrice()" id="options_<?php echo $_option->getId() ?>_text" class="input-text<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" value="<?php echo $this->escapeHtml($this->getDefaultValue()) ?>" />    <?php elseif ($_option->getType() == Mage_Catalog_Model_Product_Option::OPTION_TYPE_AREA): ?>        <textarea  id="options_<?php echo $_option->getId() ?>_text" onchange="opConfig.reloadPrice()" class="<?php echo $_option->getIsRequire() ? ' required-entry' : '' ?> <?php echo $_option->getMaxCharacters() ? ' validate-length maximum-length-'.$_option->getMaxCharacters() : '' ?> product-custom-option" name="options[<?php echo $_option->getId() ?>]" rows="5" cols="25" <?php if($_option->getTitle()=='Add remark'){echo " onfocus=\"this.value=='Please feel free to leave us a message about your special request on this item, e.g: Color for the accent part, Modification of Style, and so on.'?this.value='':this.value\" onblur=\"this.value.replace(' ')==''?this.value='Please feel free to leave us a message about your special request on this item, e.g: Color for the accent part, Modification of Style, and so on.':''\"";}?>><?php echo $this->escapeHtml($this->getDefaultValue()) ?><?php if($_option->getTitle()=='Add remark'){echo 'Please feel free to leave us a message about your special request on this item, e.g: Color for the accent part, Modification of Style, and so on.';}?></textarea>    <?php endif; ?>    <?php if ($_option->getMaxCharacters()): ?>        <p class="note"><?php echo Mage::helper('catalog')->__('Maximum number of characters:')?> <strong><?php echo $_option->getMaxCharacters() ?></strong></p>    <?php endif; ?>    </div></dd>

其他的类似,一般这些模板文件在/iption/type 目录下 对应,搞定完工.

0 Comments | Posted in Magento模板 By terry water

网站添加音乐

2013年1月31日星期四 Asia/Shanghai下午2:57:43

<embed> 是用来插入各种多媒体,格式可以是 midi、wav、aiff、au 等等,netscape 及 新版的 ie 都支持。其参数设定较多。如下下


<embed src="your.mid" autostart="true" loop="true" hidden="true">


src="your.mid"
设定 midi 档案及路径,可以是相对或绝对。
autostart=true
是否在音乐档下载完之后就自动播放。true 是,false 否 (内定值)。
loop="true"
是否自动反复播放。loop=2 表示重复两次,true 是, false 否。
hidden="true"
是否完全隐藏控制画面,true 为是,no 为否 (内定)。
starttime="分:秒"
设定歌曲开始播放的时间。如 starttime="00:30" 表示从第30秒处开始播放。
volume="0-100"
设定音量的大小,数值是0到100之间。内定则为使用系统本身的设定。
width="整数" 和 high="整数"
设定控制面板的高度和宽度。(若 hidden="no")

0 Comments | Posted By lei sheng

Block的引用

2013年1月30日星期三 Asia/Shanghai下午5:59:58

  <block type="directory/currency" name="currency" as="currency" template="directory/currency.phtml"/>
  这个问题是我在首页header调用货币时遇到的,刚接触magento 对这种模板模式还非常的陌生吧。下面是对这一部分的解释

  block中 type="directory/currency" 这个type是magento自带的,不能修改
  name 应该起到一个标识作用
  as   为phtml文档中调用的名称
  template 模板路径

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

订阅我们的最新消息。

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

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

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