remove paginations functions only on home

You can try to sneak around the problem with a little if statement.

Like this:

<?php

// If it's not the homepage, do the pagination
if(!is_home()){
    echo gmr_get_pagination();
}
?>

Hope this does the job.