Question
How do I undo host mapping and revert the URL of my Help Center back to the default?
I activated the feature to change our URL, how do I undo that?
$$.jqueryPlugin('color-switcher', {
methods: {
init: function(uid, options, $container) {
$container.on('click', function(event) {
event.preventDefault();
var className = window.theme.darkMode ? UI_LIGHT : UI_DARK;
localStorage.setItem(LS_COLOR_SCHEME, className);
document.documentElement.classList.remove(UI_DARK, UI_LIGHT);
document.documentElement.classList.add(className);
window.theme.darkMode = className === UI_DARK;
});
}
}
});
Answer
Follow the directions in this article to find where the host mapped URL was added: Host mapping - Changing the URL of your Help Center. Once you've found the URL text, simply remove it so the box labeled Host Mapping is empty.
1
1
Was this article helpful?
1 out of 1 found this helpful
Hello