That sounds like a good idea. We’ll try adding that in a next version.
A link could be added on the bottom of that pages adding these lines to functions.php of active theme:
if( class_exists( 'Awesome_Support' ) )
{
function add_wpas_links()
{
// add link to personal tickets list
echo '<div class="wpas-links">';
wpas_make_button( __( 'My Tickets', 'awesome-support' ), array( 'type' => 'link', 'link' => wpas_get_tickets_list_page_url(), 'class' => 'wpas-btn wpas-btn-default' ) );
echo '</div>';
}
add_action( 'wpas_submission_form_inside_after', 'add_wpas_links' ); // for new ticket form
add_action( 'wpas_ticket_details_reply_form_after', 'add_wpas_links' ); // for ticket details screen
}
Thanks for sharing that Riccardo.