Yes. You can add this JS to custom JS. (ChatGPT. :D)
`document.addEventListener(“DOMContentLoaded”, function () {
// Kiểm tra sự tồn tại của phần tử .wd-sticky-btn .wd-sticky-btn-cart
const stickyButton = document.querySelector(“.wd-sticky-btn .wd-sticky-btn-cart”);
const targetElement = document.querySelector(“.single_add_to_cart_button”);
if (stickyButton && targetElement) {
// Gắn sự kiện click cho phần tử
stickyButton.addEventListener(“click”, function (e) {
e.preventDefault(); // Ngăn hành động mặc định
// Scroll tới phần tử .single_add_to_cart_button
targetElement.scrollIntoView({ behavior: “smooth”, block: “center” });
});
}
});