How to Display the Discount Percentage Sale Badge? كيفية عرض نسبة الخصم على كل منتج ؟

Поделиться
HTML-код
  • Опубликовано: 17 окт 2024

Комментарии • 4

  • @abdelrhman4694
    @abdelrhman4694 12 дней назад

    ❤❤❤❤

  • @Opportunity189
    @Opportunity189  3 месяца назад

    CODE :
    ========
    add_action( 'woocommerce_sale_flash', 'sale_badge_percentage', 25 );

    function sale_badge_percentage() {
    global $product;
    if ( ! $product->is_on_sale() ) return;
    if ( $product->is_type( 'simple' ) ) {
    $max_percentage = ( ( $product->get_regular_price() - $product->get_sale_price() ) / $product->get_regular_price() ) * 100;
    } elseif ( $product->is_type( 'variable' ) ) {
    $max_percentage = 0;
    foreach ( $product->get_children() as $child_id ) {
    $variation = wc_get_product( $child_id );
    $price = $variation->get_regular_price();
    $sale = $variation->get_sale_price();
    if ( $price != 0 && ! empty( $sale ) ) $percentage = ( $price - $sale ) / $price * 100;
    if ( $percentage > $max_percentage ) {
    $max_percentage = $percentage;
    }
    }
    }
    if ( $max_percentage > 0 ) echo "-" . round($max_percentage) . "%"; // If you would like to show -40% off then add text after % sign
    }

  • @cyberghost2588
    @cyberghost2588 3 месяца назад +1

    السلام عليكم
    برجاء الشرح باللغة العربية بحيث يكون الشرح واضح.اللهجة غير مفهومة .طالما الشرح موجه للعرب عامة وليس لأصحاب اللهجة المحلية

    • @Opportunity189
      @Opportunity189  3 месяца назад

      مرحبا
      في الفيديوهات القادمة انشاء الله