Hello Temporary,
  
Please check this tutorial, we follow this method to change footer information.
  
In your case, add the following code in your functions.php file,
  
// Remove current footer information  
remove_action( 'rtp_hook_end_footer', 'rtp_footer_copyright_content' );  
// Customize footer information  
function my_footer_copyright_info() { ?>  
      
    <?php $rtp_set_grid_class = apply_filters( 'rtp_set_full_width_grid_class', 'large-12 columns rtp-full-width-grid' ); ?>  
        
  
       
    <?php  
}  
// Add new footer information  
add_action( 'rtp_hook_end_footer', 'my_footer_copyright_info' );  
Note: Kindly update "#" link with your required links.
  
Let me know if its work for you :)