Title: raphire's Replies | WordPress.org

---

# raphire

  [  ](https://wordpress.org/support/users/raphire/)

 *   [Profile](https://wordpress.org/support/users/raphire/)
 *   [Topics Started](https://wordpress.org/support/users/raphire/topics/)
 *   [Replies Created](https://wordpress.org/support/users/raphire/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/raphire/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/raphire/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/raphire/engagements/)
 *   [Favorites](https://wordpress.org/support/users/raphire/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Shipment Tracking for WooCommerce] Track your order button in email not localized](https://wordpress.org/support/topic/track-your-order-button-in-email-not-localized/)
 *  Thread Starter [raphire](https://wordpress.org/support/users/raphire/)
 * (@raphire)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/track-your-order-button-in-email-not-localized/#post-16538265)
 * I already found a solution to this without using the email customizer. The plugin
   actually doesn’t use the translation that does actually exist in the localization
   files.
 * In fluid-tracking-info.php, line 154:
 *     ```wp-block-code
       <a href="<?php echo esc_url( $tracking_item['ast_tracking_link'] ); ?>" class="track-button" target="_blank"><?php esc_html_e( $fluid_button_text ); ?></a>
       ```
   
 * Needs to be replaced by:
 *     ```wp-block-code
       <a href="<?php echo esc_url( $tracking_item['ast_tracking_link'] ); ?>" class="track-button" target="_blank"><?php esc_html_e( 'Track Your Order', 'woo-advanced-shipment-tracking' ); ?></a>  
       ```
   
 * Now it grabs the correct translation, which the other parts of the tracker also
   do.

Viewing 1 replies (of 1 total)