autoship_display_apply_customer_info_to_all_scheduled_orders_btn_link_label (filter)

( src/customers.php) Used to customize the HTML / text output of the Autoship "Click here to update your shipping address on all Scheduled Orders" html added with the 'woocommerce_my_account_my_address_description' filter. It takes the HTML output (to add to the WC $notice) and the (Autoship update customer info) $url as parameters.

Code

  // Only display the notice if the user has scheduled orders.
  if ( apply_filters('autoship_display_customer_update_actions', true, get_current_user_id() ) ){

  echo apply_filters( 'autoship_display_apply_customer_info_to_all_scheduled_orders_btn_link_label', sprintf( __('Click <a href="%s">here</a> to update your shipping address on all %s', 'autoship'), $url, autoship_translate_text( 'Scheduled Orders' ) ), $url );

  }

Found in the Functions