Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author julien731

    (@julien731)

    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
    }

    Plugin Author julien731

    (@julien731)

    Thanks for sharing that Riccardo.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Link back to tickets list’ is closed to new replies.