2017-05-09 2 views

답변

0

1) 리뷰 탭을 이동하여 제품 설명 아래에 가져 오려면 -> 다음과 같은 조치를 취할 수 있습니다.

add_action ('woocommerce_product_tabs', 'woocommerce_product_description_tab', 14); 후기

2) : 여기에서 따르

https://www.cloudways.com/blog/review-plugins-for-woocommerce/

감사

0

당신 도움이해야 WooCommerce 워드 프로세서에서 다음 링크 : https://docs.woocommerce.com/document/editing-product-data-tabs/

다시 주문 탭을 :

add_filter('woocommerce_product_tabs', 'woo_reorder_tabs', 98); 
function woo_reorder_tabs($tabs) { 

    $tabs['reviews']['priority'] = 5;   // Reviews first 
    $tabs['description']['priority'] = 10;   // Description second 
    $tabs['additional_information']['priority'] = 15; // Additional information third 

    return $tabs; 
} 
관련 문제