document.addEventListener("DOMContentLoaded", function() {
var optionsButtons = document.getElementById("my_account_options");
var backButton = document.querySelectorAll(".my_account_back");
var currentPath = window.location.pathname;
var myAccountPath = "/min-konto/";
var myAccountPathLength = myAccountPath.length;
if (currentPath.indexOf(myAccountPath) !== -1 && currentPath.length > myAccountPathLength) {
if (currentPath.substring(myAccountPathLength).length > 1) { // Change 0 to 1
optionsButtons.style.display = "none";
for (var i = 0; i < backButton.length; i++) {
backButton[i].style.display = "block";
}
}
} else {
optionsButtons.style.display = "block";
for (var i = 0; i < backButton.length; i++) {
backButton[i].style.display = "none";
}
}
});
- Security error. Please contact us if you need assistance.
- Login