Guest User

Custom Input Field For COD

a guest
Dec 18th, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.33 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Output a single payment method
  4.  *
  5.  * This template can be overridden by copying it to yourtheme/woocommerce/checkout/payment-method.php.
  6.  *
  7.  * HOWEVER, on occasion WooCommerce will need to update template files and you
  8.  * (the theme developer) will need to copy the new files to your theme to
  9.  * maintain compatibility. We try to do this as little as possible, but it does
  10.  * happen. When this occurs the version of the template file will be bumped and
  11.  * the readme will list any important changes.
  12.  *
  13.  * @see         https://docs.woocommerce.com/document/template-structure/
  14.  * @package     WooCommerce/Templates
  15.  * @version     3.5.0
  16.  */
  17.  
  18. if ( ! defined( 'ABSPATH' ) ) {
  19.     exit;
  20. }
  21. ?>
  22. <li class="wc_payment_method payment_method_<?php echo esc_attr( $gateway->id ); ?>">
  23.     <input id="payment_method_<?php echo esc_attr( $gateway->id ); ?>" type="radio" class="input-radio" name="payment_method" value="<?php echo esc_attr( $gateway->id ); ?>" <?php checked( $gateway->chosen, true ); ?> data-order_button_text="<?php echo esc_attr( $gateway->order_button_text ); ?>" />
  24.  
  25.      <label for="payment_method_<?php echo esc_attr( $gateway->id ); ?>">
  26.         <?php echo $gateway->get_title(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?> <?php echo $gateway->get_icon(); /* phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped */ ?>
  27.     </label>
  28.     <?php  if ( $gateway->has_fields()  || $gateway->get_description()  ) : ?>
  29.         <div class="payment_box payment_method_<?php echo esc_attr( $gateway->id ); ?>" <?php if ( ! $gateway->chosen ) : /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>style="display:none;"<?php endif; /* phpcs:ignore Squiz.ControlStructures.ControlSignature.NewlineAfterOpenBrace */ ?>>
  30.        
  31.  
  32. /////// HERE IS THE CUSTOM INPUT FIELD WHICH displays A INPUT FIELD WHEN COD IS SELECTED
  33.  
  34.    
  35.     <?php if ( $gateway->has_fields() || /* $gateway->get_description() && */ $gateway->id != "cod" ) : ?>
  36. <?php endif; ?>
  37. <?php if ( $gateway->id == "cod" ) : ?>
  38. <div class="payment_box payment_method_<?php echo $gateway->id; ?>" <?php if ( ! $gateway->chosen ) : ?>style="display:none;"<?php endif; ?>>
  39.     <input type="text" name='cod_custom_field' placeholder="Enter Your Margin" >
  40.             </div>
  41. <?php endif; ?>    
  42.  
  43.  
  44.    
  45.             <?php $gateway->payment_fields(); ?>
  46.         </div>
  47.     <?php endif; ?>
  48. </li>
Add Comment
Please, Sign In to add comment