<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div id="desctext">show this only on the order-received url, hide on regular checkout page where its stored</div>
<script>
$(document).ready(function() { if(window.location.href.indexOf("order-rec") > -1) {
$('#desctext').show();
}
else{
$('#desctext').hide();
}
});
</script>
</body></html>
/*
simple demo for changing on page content base don whether a user is actively on a url which includes order-rec for "order-received" this is for a merchant banker, scum of the earth but what are you gonna do...
*/