워드프레스 / 우커머스 / 잡다한 정보들
워드프레스
2019-04-09
차례
상품 페이지 라이트박스 제거
functions.php에 다음 코드 추가
add_filter( 'woocommerce_single_product_image_thumbnail_html', 'wc_remove_link_on_thumbnails' ); function wc_remove_link_on_thumbnails( $html ) { return strip_tags( $html, '<img>' ); }
우커머스 스타일 제거
functions.php에 다음 코드 추가
add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
관련 상품 제거
CSS에 다음 코드 추가
.single-product .related.products { display: none; }
Database Pending 작업 실행하는 방법
예약된 데이터베이스 작업이 진행되지 않는다면 강제로 실행할 수 있습니다. 작업 이름에 마우스를 올리면 실행 메뉴가 나오고 그걸 클릭하면 되는데...
만약 그게 보이지 않는다면 사이트 언어를 영어로 변경합니다. 그러면 Run이 보이고, 그걸 클릭해서 작업을 실행합니다.