jigneshkaila

Untitled

Jun 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. add_filter('angelleye_paypal_plus_shipping_line1', 'th_angelleye_paypal_plus_shipping_line1', 10, 2);
  2.  
  3.     function th_angelleye_paypal_plus_shipping_line1($shipping_address_1, $order_id) {
  4.         $shipping_address = get_post_meta($order_id, '_shipping_address_1', true);
  5.         if (empty($shipping_address)) {
  6.             $house_no = get_post_meta($order_id, '_billing_hausnummer', true);
  7.             if (empty($house_no)) {
  8.                 $house_no = get_post_meta($order_id, 'billing_hausnummer', true);
  9.             }
  10.         } else {
  11.             $house_no = get_post_meta($order_id, '_shipping_haus_nummer', true);
  12.             if (empty($house_no)) {
  13.                 $house_no = get_post_meta($order_id, 'shipping_haus_nummer', true);
  14.             }
  15.         }
  16.         if (!empty($house_no)) {
  17.             $shipping_address_1 = $shipping_address_1 . ' ' . $house_no;
  18.         }
  19.         return $shipping_address_1;
  20.     }
Add Comment
Please, Sign In to add comment