답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

jQuery(document).ready(function($){ $('.product-small').each(function(){ var $product = $(this); var $boxText = $product.find('.box-text'); // 버튼 컨테이너 생성 if(!$boxText.find('.custom-button-footer').length) { var $footer = $(''); // 장바구니 버튼 이동 var $cart = $product.find('.add-to-cart-container, .add_to_cart_button').first().clone(); if($cart.length) $footer.append($cart); // 좋아요 버튼 이동 var $wishlist = $product.find('.yith-wcwl-add-to-wishlist').first().clone(); if($wishlist.length) $footer.append($wishlist); $boxText.append($footer); // 원본 숨기기 $product.find('.image-cover').hide(); } }); });