Добавляю свой обратный отсчет в нижнюю часть корзины

#javascript #css #shopify #liquid

Вопрос:

Сегодня я добавляю этот код в свой магазин, он предназначен для добавления обратного отсчета в верхней части корзины.

Но я хочу переместить его в нижнюю часть корзины (чуть выше «итого на скриншоте моего shopify»).

Здесь у вас есть скриншот моего ящика для покупок :

введите описание изображения здесь

 Search : "<div class="h2 drawer__title">{{ 'cart.general.title' | t }}</div>"       
Transform by : "<div class="h2 drawer__title">{{ 'cart.general.title' | t }}<br></div>"
Add this between <br> and </div> : <h6><strong> Votre panier expire dans <span id="time" style="color: #4c51e0">10:00</span></strong></h6> <script type="text/javascript">
function startTimer(duration, display) {
    var timer = duration,
        minutes, seconds;
    setInterval(function() {
        minutes = parseInt(timer / 60, 10);
        seconds = parseInt(timer % 60, 10);

        minutes = minutes < 10 ? "0"   minutes : minutes;
        seconds = seconds < 10 ? "0"   seconds : seconds;

        display.textContent = minutes   ":"   seconds;

        if (--timer < 0) {
            timer = duration;
        }
    }, 1000);
}

window.onload = function() {
    var fiveMinutes = 60 * 10,
        display = document.querySelector('#time');
    startTimer(fiveMinutes, display);
}; </script>
 

So i do it and i have my timer at the top of the cart, but now i can’t move it to the bottom. I’m not very great for dev so if someone can help me 🙂

Thanks a lot !