Deprecated: ltrim(): Passing null to parameter #1 ($string) of type string is deprecated in /home/tarhakir/public_html/site/wp-content/plugins/wordpress-seo-premium/premium/classes/redirect/redirect-util.php on line 114

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/tarhakir/public_html/site/wp-content/plugins/elementor-pro/core/editor/editor.php on line 129

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/tarhakir/public_html/site/wp-content/plugins/elementor-pro/core/editor/editor.php on line 129

Deprecated: Using ${var} in strings is deprecated, use {$var} instead in /home/tarhakir/public_html/site/wp-content/plugins/wordpress-seo-premium/frontend/class-frontend.php on line 605

Warning: Cannot modify header information - headers already sent by (output started at /home/tarhakir/public_html/site/wp-content/plugins/wordpress-seo-premium/premium/classes/redirect/redirect-util.php:114) in /home/tarhakir/public_html/site/wp-includes/feed-rss2.php on line 8
کد تخفیف ووکامرس – طرحک https://tarhak.ir طراحی انواع لوگو ، پوستر ، سایت و ... Wed, 07 Jul 2021 09:54:58 +0000 fa-IR hourly 1 https://tarhak.ir/site/wp-content/uploads/2020/10/cropped-tarhak-logo2-32x32.png کد تخفیف ووکامرس – طرحک https://tarhak.ir 32 32 کد نمایش درصد تخفیف به جای کلمه “حراج” در ووکامرس https://tarhak.ir/361/%da%a9%d8%af-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1%d8%b5%d8%af-%d8%aa%d8%ae%d9%81%db%8c%d9%81-%d8%a8%d9%87-%d8%ac%d8%a7%db%8c-%da%a9%d9%84%d9%85%d9%87-%d8%ad%d8%b1%d8%a7%d8%ac-%d8%af%d8%b1 https://tarhak.ir/361/%da%a9%d8%af-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1%d8%b5%d8%af-%d8%aa%d8%ae%d9%81%db%8c%d9%81-%d8%a8%d9%87-%d8%ac%d8%a7%db%8c-%da%a9%d9%84%d9%85%d9%87-%d8%ad%d8%b1%d8%a7%d8%ac-%d8%af%d8%b1#respond Wed, 07 Jul 2021 09:47:24 +0000 https://tarhak.ir/?p=361 اگر میخواهید در فروشگاه ووکامرس خود بجای کلمه ” حراج! ” میزان تخفیف محصول خود را نمایش دهید تا جذابیت بیشتری برای مشتری داشته باشد، کافیست کد زیر را در انتهای فایل functions.php قالب خود قرار دهید:   add_action( ‘woocommerce_sale_flash’, ‘sale_badge_percentage’, 25 ); function sale_badge_percentage() { global $product; if ( ! $product->is_on_sale() ) return; if […]

نوشته کد نمایش درصد تخفیف به جای کلمه “حراج” در ووکامرس اولین بار در طرحک. پدیدار شد.

]]>
نمایش درصد تخفیف محصولات حراج شده در ووکامرس

اگر میخواهید در فروشگاه ووکامرس خود بجای کلمه ” حراج! ” میزان تخفیف محصول خود را نمایش دهید تا جذابیت بیشتری برای مشتری داشته باشد، کافیست کد زیر را در انتهای فایل functions.php قالب خود قرار دهید:

 

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 “<span class=’onsale’>-” . round($max_percentage) . “%</span>”; // If you would like to show -40% off then add text after % sign
}

نوشته کد نمایش درصد تخفیف به جای کلمه “حراج” در ووکامرس اولین بار در طرحک. پدیدار شد.

]]>
https://tarhak.ir/361/%da%a9%d8%af-%d9%86%d9%85%d8%a7%db%8c%d8%b4-%d8%af%d8%b1%d8%b5%d8%af-%d8%aa%d8%ae%d9%81%db%8c%d9%81-%d8%a8%d9%87-%d8%ac%d8%a7%db%8c-%da%a9%d9%84%d9%85%d9%87-%d8%ad%d8%b1%d8%a7%d8%ac-%d8%af%d8%b1/feed 0