Redirect /cart page
Add code to Code Injection > Footer. Replace Google.com with new url
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
( ( ) => {
/*
cart page redirect to url
Version : 0.1.0
SS Versions : 7.1, 7.0
By : Thomas Creedon < http://www.tomsWeb.consulting/ >
*/
const url = 'https://google.com';
// do not change anything below, there be the borg here
if ( location.pathname != '/cart' ) return; // bail if not cart page
location.href = url;
} ) ( );
</script>
Redirect /search page
Use code to Code Injection > Footer. Replace Google with new page url
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
( ( ) => {
/*
cart page redirect to url
Version : 0.1.0
SS Versions : 7.1, 7.0
By : Thomas Creedon < http://www.tomsWeb.consulting/ >
*/
const url = 'https://google.com';
// do not change anything below, there be the borg here
if ( location.pathname != '/search' ) return; // bail if not cart page
location.href = url;
} ) ( );
</script>