Để thêm từ ‘From’ trước giá của sản phẩm trong page listing hoặc related products thì bạn có thể sử dụng snippets dưới đây:
add_filter('woocommerce_get_price_html', 'sg_prefix_price', 99, 2); function sg_prefix_price( $price, $product ) { global $related_products; $show = false; if ( (isset($GLOBALS['woocommerce_loop']['name']) && $GLOBALS['woocommerce_loop']['name'] !='') || is_product_category() || is_shop() ) $show = true; return ($show? 'From ': '') . $price; }