Title: Final message
Last modified: March 7, 2018

---

# Final message

 *  Resolved [rochajorge](https://wordpress.org/support/users/rochajorge/)
 * (@rochajorge)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/final-message/)
 * Is there a way to costumize Offline message after checkout?
 * Your ticket order has been submitted! Any payment due will be collected when 
   you arrive at the event. ?
 * Thank you

Viewing 1 replies (of 1 total)

 *  Plugin Author [Joe Dolson](https://wordpress.org/support/users/joedolson/)
 * (@joedolson)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/final-message/#post-10053624)
 * Yes. You can customize that text usign the ‘mt_get_message_text’ filter. That’s
   the message returned in the ‘payment_due’ context.
 *     ```
       add_filter( 'mt_get_message_text', 'my_message_text', 10, 3 );
       function my_message_text( $original, $context, $type ) {
           if ( 'payment_due' == $context ) {
                return "<div class='payment_due offline mt-message'><p>Your text here</p></div>";
           }
   
           return $original;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Final message’ is closed to new replies.

 * ![](https://ps.w.org/my-tickets/assets/icon-256x256.png?rev=1097581)
 * [My Tickets - Accessible Event Ticketing](https://wordpress.org/plugins/my-tickets/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/my-tickets/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/my-tickets/)
 * [Active Topics](https://wordpress.org/support/plugin/my-tickets/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/my-tickets/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/my-tickets/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Joe Dolson](https://wordpress.org/support/users/joedolson/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/final-message/#post-10053624)
 * Status: resolved