首页 > Windows开发 > 详细

magento form.html不显示 window 和 Linux下的区别

时间:2019-08-13 00:00:01      阅读:155      评论:0      收藏:0      [点我收藏+]

 

window 无大小写区别,所以可以显示表框

Linux 大小写敏感,显示不了

\app\code\community\Company\BabyPay\Model\Payment.php 里定义了form

protected $_code = ‘BabyPay_payment‘;
protected $_formBlockType = ‘BabyPay/form‘;  //大写

/app/design/frontend/default/default/template/BabyPay/ 所以这个文件夹也要大写

标签云

Magento自定义付款方式形式不显示

 

 

I wrote a custom payment module. It seems to be working fine but I can‘t show the method form in the checkout process. I mean: I see my method, I can select it, but can‘t see the form. I want to show a select box with a couple of options but no form is rendered.

app\code\local\Neurona\Sistarbanc\Block\Form\sistarbanc.php

class Neurona_Sistarbanc_Block_Form_Sistarbanc extends Mage_Payment_Block_Form
{
  protected function _construct()
   {
    parent::_construct();
    $this->setTemplate(‘payment/form/sistarbanc.phtml‘);
   }
....

And the form in app\design\frontend\base\default\template\payment\form\sistarbanc.phtml

Any help will be appreciated!!

EDIT

技术分享图片 技术分享图片

So, it seems to be working in the default ckeckout process but not in the onestepcheckout

EDIT 2

I found that in onestepheckout this is the way the payment method form is rendered:

<?php if ($html = $this->getPaymentMethodFormHtml($_method)): ?>
  <dd id="container_payment_method_<?php echo $_code; ?>" class="payment-method" <?php if(!$this->getSelectedMethodCode()==$_code || !($hide_nonfree_methods && $_code == ‘free‘)): ?> style="display:none"<?php endif; ?>>
<?php echo $html; ?>
</dd>

So, for my method $this->getPaymentMethodFormHtml($_method) is FALSE. ?0?7why?

 

2016年10月27日12分02秒

 

Your template filename is Sisterbanc.phtml, but your block will try to load sisterbanc.phtml (uppercase "s" vs lowercase "s").

 

2016年10月27日12分02秒

 

Maybe you need add this line in Model/Payment.php.

protected $_formBlockType = "sistarbanc/form/sistarbanc"

I don‘t know the reason why though. I compared with other payment module code, and got this.

 

2016年10月27日12分02秒

 

 

 

© 2016 91R.NET 版权所有

magento form.html不显示 window 和 Linux下的区别

原文:https://www.cnblogs.com/alex-13/p/11343317.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!