Quote Originally Posted by jimmie View Post
there is a litte X to close it out
there are a couple of ways to handle it. conceivably you can add some javascript to automatically remove it out on pages that you do not want to see it.

there does not seem to be any notifiers in the message_stack class despite that class extending base.

barring that, you can change the following file:

includes/templates/YOUR_TEMPLATE/templates/tpl_message_stack_default.php

to something like:

PHP Code:
<?php
    
for ($i 0$n sizeof($output); $i $n$i++) {
        if (!
str_contains($output[$i]['text'], 'Currently shopping for')) {
            
?>
            <div <?= $output[$i]['params']; ?>><?= $output[$i]['text']; ?></div>
            <?php
        
}
    }
hope that helps.

best.