Add gift messages in the "Payment Information" section of the "Magento checkout"

I want to show Gift message optionin the section of the Billing Information in Magento checkout.

Currently, this option is displayed in the delivery method inmagento checkout.

How can i do this? I usemagento 1.9.0.1.

Please, help..

+4
source share
1 answer
  • Go to the current theme package and open the file that is currently running checkout-> onepage-> shipping_method-> Additional.phtml to delete the following lines.

    <div id="onepage-checkout-shipping-method-additional-load">
      <?php echo $this->getChildHtml('additional') ?>
    </div>    
    
  • checkout- > onepage- > billing.phtml, , .

     <div id="onepage-checkout-shipping-method-additional-load">
       <?php echo $this->getLayout()->createBlock('checkout/onepage_shipping_method_additional')->setTemplate('checkout/onepage/shipping_method/additional.phtml')->toHtml(); ?>
     </div>
    
+1

Source: https://habr.com/ru/post/1584214/


All Articles