2013-07-25 4 views
3

Woocommerce에서 새로운 제품을 추가 할 때 추천 이미지의 링크를 삭제하려고합니다. 나는 이전 버전에서 그것을했지만 업데이트 이후 어떻게/어디에서 편집했는지 찾을 수없는 것 같습니다. 소용이없는 파일을 조사 중입니다. 어떤 도움이 필요합니까?Woocommerce 제거 추천 이미지에 관한 링크

답변

10

내가 원래 사용 CSS : 링크 클래스 (내가 IMG을 .zoom 사용 생각한다) 그러나 나는이 해결책을 발견 검색의 시간 이후 있도록 jQuery를 줌 이미지를 사용하는 데 필요한에 pointer-events:none;

, 단지 추가 이것은 당신의 functions.php에 그리고 당신을 정렬합니다.

/** 
    * Remove link wrapping main product image in single product view. 
    * @param $html 
    * @param $post_id 
    * @return string 
*/ 

function custom_unlink_single_product_image($html, $post_id) { 
    return get_the_post_thumbnail($post_id, apply_filters('single_product_large_thumbnail_size', 'shop_single')); 
} 

add_filter('woocommerce_single_product_image_html', 'custom_unlink_single_product_image', 10, 2); 
관련 문제