Add this code to the Lock Page Code Injection and click Save (you can change the Google URL in the code to URL what you want)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
$(".sqs-slice img").click(function() {
var link = $(this).text(),
href = "https://google.com";
window.location.href=href;
});
});
</script>
<style>
.sqs-slice-group.group-top img {
cursor: pointer;
}
</style>

