Вы можете добавить эти правила отображения в класс, а затем динамически добавить этот класс в тело на основе window.location
.
Ваши правила CSS будут выглядеть примерно так (обратите внимание на новый .mywebsite-com-my-account-return
класс):
<style>
.mywebsite-com-my-account-return .shop table.shop_table.my_account_orders>tbody>tr {
display: table-row !important;
}
.mywebsite-com-my-account-return .shop table.shop_table.my_account_orders>tbody>tr>td {
display: table-cell !important;
}
.mywebsite-com-my-account-return .shop table.shop_table.my_account_orders>tbody>tr>td:before {
display: table-row !important;
}
</style>
Тогда ваш Javascript будет выглядеть так:
<script>
if (window.location.href === "https://mywebsite.com/my-account/return") {
document.querySelector("body").classList.add("mywebsite-com-my-account-return")
}
</script>