請求フォームにニュースレターのチェックボックスを追加する


11

ユーザーがチェックアウトプロセスに直接登録することを選択した場合、チェックボックスニュースレターを請求フォームに追加したいのですが、どうすればよいですか?


2
ニュースレターのメール配信のニーズにMailChimpを利用する計画はありますか?ezbizmartsによるMageMonkey拡張機能には、チェックアウトプロセスにニュースレターのサインアップを追加する構成オプションがあります。
ダレンフェルトン2015年

回答:


15

こんにちは、billing.phtmlで以下のコードを追加してこれを追加できます。

 <input type="checkbox" name="is_subscribed" 
  title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1"  checked="checked" class="checkbox" />

イベントを使用しcheckout_submit_all_afterて顧客をニュースレターに登録する

  <global>
 <events>
    <checkout_submit_all_after> <!-- identifier of the event we want to catch -->
        <observers>
          <checkout_submit_all_after_handler> <!-- identifier of the event handler -->
            <type>singleton</type> <!-- class method call type; valid are model, object and singleton -->
            <class>magento52274/observer</class> <!-- observers class alias -->
            <method>AssignNewletter</method>  <!-- observer's method to be called -->
            <args></args> <!-- additional arguments passed to observer -->
          </checkout_submit_all_after_handler>
        </observers>
      </checkout_submit_all_after>
    </events>
  </global>

そしてオブザーバーコードは:

   public function AssignNewletter($observer) {
            $event = $observer->getEvent();
            $order = $event->getOrder();
        $Quote =$event->getQuote();
        if (in_array($Quote()->getCheckoutMethod(), array('register','customer'))):

        if (Mage::app()->getFrontController()->getRequest()->getParam('is_subscribed')){
        $status = Mage::getModel('newsletter/subscriber')->subscribe($Quote->getBillingAddress()->getCustomerEmail());
        }
        endif;
   }

完全なモジュール:

ステップ1: config.xmlを作成しapp/code/local/Stackexchange/Magento52274/etc/、コードは

<?xml version="1.0"?>
<config>
  <modules>
    <Stackexchange_Magento52274>
      <version>1.0.0</version>
    </Stackexchange_Magento52274>
  </modules>
  <global>
    <models>
      <magento52274>
        <class>Stackexchange_Magento52274_Model</class>
      </magento52274>
    </models>
    <events>
      <checkout_submit_all_after> <!-- identifier of the event we want to catch -->
        <observers>
          <checkout_submit_all_after_handler> <!-- identifier of the event handler -->
            <type>singleton</type> <!-- class method call type; valid are model, object and singleton -->
            <class>magento52274/observer</class> <!-- observers class alias -->
            <method>AssignNewletter</method>  <!-- observer's method to be called -->
          </checkout_submit_all_after_handler>
        </observers>
      </checkout_submit_all_after>
    </events>
  </global>
</config> 

ステップ2:Observer.php atで作成しapp/code/local/Stackexchange/Magento52274/Model/、コードは

<?php
class Stackexchange_Magento52274_Model_Observer
{

    public function AssignNewletter(Varien_Event_Observer $observer)
    {
    $event = $observer->getEvent();
            $order = $event->getOrder();
        $Quote =$event->getQuote();
        if (in_array($Quote()->getCheckoutMethod(), array('register','customer'))):

            if Mage::app()->getFrontController()->getParam('is_subscribed', false)){
        $status = Mage::getModel('newsletter/subscriber')->subscribe($Quote->getBillingAddress()->getEmail());
         }
        endif;
    }

}

ステップ3:モジュールapp/etc/modules/Stackexchange_Magento52274.xmlとコードを作成する

<?xml version="1.0"?>
<config>
  <modules>
    <Stackexchange_Magento52274>
      <active>true</active>
      <codePool>local</codePool>
      <version>1.0.0</version>
    </Stackexchange_Magento52274>
  </modules>
</config>

ステップ4:そしてまたでニュースレターのフィールドを追加する必要がbilling.phtmlA

<input type="checkbox" name="is_subscribed" 
  title="<?php echo $this->__('Sign Up for Newsletter') ?>" value="1"  checked="checked" class="checkbox" />

2
これはおそらく少しクリーンアップを使用する可能性があります-少なくとも、「フルモジュール」の下のコードの一部は、回答の前半のコードと一致しません。
マイク

2
特に、-> getBillingAddress()-> getEmail()は、特にペイパルのメールが関係している場合は、常にメールを取得するわけではありません。getCustomerEmailの方が安全です。
Claudiu Creanga

この回答は無視してください。これがどうしてこれだけの賛成票を獲得できるのか私にはわかりません。これは機能しません!checkout_submit_all_afterオブザーバーの請求フォームフィールドにアクセスできません。この実装を見ていてください:magento.stackexchange.com/questions/219460/...を
マイケルThessel
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.