Home Forums WoodMart support forum solo00 problem with prices

solo00 problem with prices

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #452757

    kompassmarketingbs
    Participant

    Hello i would like to change products price because of stock managment software they change something i think and how i have always 2 prices which when i am not on sale there are the same so i decide to try code php in function.php with this code
    add_filter( ‘woocommerce_get_price_html’, ‘custom_price_html’, 100, 2 );

    function custom_price_html( $price, $product ) {
    $prices = $product->get_variation_prices();
    $min_price = min($prices[‘price’]);
    $max_price = max($prices[‘price’]);

    if ($min_price == $max_price) {
    // Ако цените са еднакви, показваме само едната цена
    $price = wc_price($min_price);
    } else {
    // Ако цените са различни, показваме две цени, като по-високата е задраскана
    $regular_price = wc_price($max_price);
    $sale_price = wc_price($min_price);
    $price = ‘‘ . $regular_price . ‘ ‘ . $sale_price;
    }

    return $price;
    }
    but something is not working or i am not doing it right can you check or give me advise what to do
    hire you can see similar prices https://solo00.fun/product-category/chanti-i-raniczi/

    #452890

    Artem Temos
    Keymaster

    Hello,

    There are might be some errors in the code so it doesn’t work as you expected. Sorry, but fixing additional codes like this is out of our theme support scope. Feel free to contact us if you have any further questions.

    Kind Regards

    #453033

    kompassmarketingbs
    Participant

    hi ok then but i have another qustions as well why 1 products shows sold out but in admin i have qty https://solo00.fun/product/damski-obuvki-na-tok-tamaris-touch-it-sini/

    Attachments:
    You must be logged in to view attached files.
    #453053

    Artem Temos
    Keymaster

    Hello,

    As we can see, this product is set to be “Out of stock” so that is why the label is shown there https://monosnap.com/file/VJ0Q7QQUfDVCAh3SuDMx8vXcRNYgGA

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)