Blog Post
cjdinger
4 years agoLeader
Re: moving the Not Spam button NickQuinn -- we ended up doing that on our site by adding a little script, called on the last_chance_html.ftl:
<script>
;(function ($) {
function moveNotSpamButton() {
var btn = document.getElementById('lia-notSpamButton');
var after = document.getElementById('searchBreadCrumb');
after.append(btn);
}
if (window.location.href.indexOf("/spam/searchpage") != -1)
moveNotSpamButton();
})
(LITHIUM.jQuery);
</script>
We'll see if the updates to the page affect this or whether we need to adjust.