get_sku(); $price = $product->get_price(); $price = $this->getLowestPrice($price); echo '
od ' . $price . ' zł
'; } private function getLowestPrice($price) { $productRepository = new ProductRepository(SERVER_URL); $price = $productRepository->getLowestPrice($price); return $price; } }