// Add custom fields to checkout
+//add_filter( 'woocommerce_checkout_fields' , 'tm_added_checkout_fields' );
add_filter( 'woocommerce_after_order_notes' , 'tm_added_checkout_fields' );
function tm_added_checkout_fields( $checkout ) {
'type' => 'textarea',
'class' => array('my-field-class form-row-wide'),
'label' => __(''),
- 'placeholder' => __('If you wish to charge shipping to your FedEx account, please provide the information here.'),
+ 'placeholder' => __('If you wish to charge shipping to your FedEx account, please provide account and phone number here.'),
), $checkout->get_value( 'tm_fedex_shipping' ));
echo '</div>';