首页 > 解决方案 > 在 Woocommerce 中显示 FROM 和 TO 日期的售后文本

问题描述

我正在使用Woocommerce 3+中显示的带有日期限制的海关产品销售价格来对具有限制期限的销售产品进行自定义格式的价格显示。

现在我试图包括“从”日期。如何在此代码中获取并包含起始日期?

任何曲目都非常有用和赞赏。

标签: phpwordpressdatewoocommerceprice

解决方案


以下代码将在您的价格自定义显示中处理销售日期从和销售日期到(需要从和到日期)

add_filter( 'woocommerce_get_price_html', 'custom_price_html', 100, 2 );
function custom_price_html( $price, $product ){
    if ( is_product() ) {
        // Simple products and variations
        if( $product->is_type( 'simple' ) || $product->is_type( 'variation' )  )
        {
            $sales_price_from = $product->get_date_on_sale_from();
            $sales_price_to = $product->get_date_on_sale_to();
            if( ! empty($sales_price_from) && ! empty($sales_price_to) ){
                $replacement = ' </ins> <span class="notice-price">(on offer from ' . date( 'j.M.Y', $sales_price_from->getTimestamp() ) . ' until ';
                return str_replace( '</ins>', $replacement . date( 'j.M.Y', $sales_price_to->getTimestamp() ) . ')</span>', $price );
            }
        }
        // Variable products
        else if ( $product->is_type( 'variable' ) )
        {
            $from = $to = '';
            // Loop through variations
            foreach ( $product->get_children() as $key => $variation_id ) {
                $variation        = wc_get_product($variation_id);
                $sales_price_from = $variation->get_date_on_sale_from();
                $sales_price_to   = $variation->get_date_on_sale_to();

                if( ! empty($sales_price_from) && ! empty($sales_price_to) ){
                    $date_from = date( 'j.M.Y', $sales_price_from->getTimestamp() );
                    $date_to   = date( 'j.M.Y', $sales_price_to->getTimestamp() );
                    $class     = $key == 0 ? 'class="active"' : '';
                    $from     .= '<i data-id="'.$variation_id.'" data-order="'.($key + 1).'" '.$class.'>'. $date_from .'</i>';
                    $to       .= '<i data-id="'.$variation_id.'" data-order="'.($key + 1).'" '.$class.'>'. $date_to .'</i>';
                }
            }
            if( ! empty($content) ){
                return $price . ' <span class="notice-price">(on offer from ' . $from . ' until ' . $to .')</span>';
            }
        }
    }
    return $price;
}

代码位于您的活动子主题(或活动主题)的 function.php 文件中。测试和工作。


推荐阅读