Hi zdsims,
While it is possible to make changes like this, it’s first important to know that these types of changes are custom changes that are not supported by Diverse Solutions. You’d either need to have some development skills / knowledge -OR- hire a developer to make these types of changes for you.
That said, the link / label is generated from our servers and then sent to your site. To edit what any part of our layout reads, you would need to employ javascript.
Here is an example of a script that could change what the link reads:
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function () {
if (document.querySelector("#dsidx-virtual-tour-container")) {
var tourLink = document.querySelector("#dsidx-virtual-tour-container").innerHTML;
//console.log(tourLink);
var newText = "Check out this homes virtual tour video!";
var replacedLink = tourLink.replace("View Virtual Tour", newText);
//console.log(replacedLink);
document.querySelector("#dsidx-virtual-tour-container").innerHTML = replacedLink;
};
}, false);
</script>
Simply replace “newText” with what you’d like it to read instead.
I hope this helps!