在 Woocommerce 中,我计划在银行名称插件 BACS 之前添加图像。现在我已经输入了银行名称和其他设置,并且已经尝试在银行名称之前输入 HTML,但它不起作用。

最佳答案

您可以轻松地在结帐页面的支付网关中添加图标(图像)。



例如,您需要将主题文件夹中的图像作为“ Assets ”上传。

对于每个网关,您可以启用自定义图像,或返回默认图像,使用此自定义函数 Hook woocommerce_gateway_icon Action Hook :

add_filter( 'woocommerce_gateway_icon', 'custom_payment_gateway_icons', 10, 2 );
function custom_payment_gateway_icons( $icon, $gateway_id ){

    foreach( WC()->payment_gateways->get_available_payment_gateways() as $gateway )
        if( $gateway->id == $gateway_id ){
            $title = $gateway->get_title();
            break;
        }

    // The path (subfolder name(s) in the active theme)
    $path = get_stylesheet_directory_uri(). '/assets';

    // Setting (or not) a custom icon to the payment IDs
    if($gateway_id == 'bacs')
        $icon = '<img src="' . WC_HTTPS::force_https_url( "$path/bacs.png" ) . '" alt="' . esc_attr( $title ) . '" />';
    elseif( $gateway_id == 'cheque' )
        $icon = '<img src="' . WC_HTTPS::force_https_url( "$path/cheque.png" ) . '" alt="' . esc_attr( $title ) . '" />';
    elseif( $gateway_id == 'cod' )
        $icon = '<img src="' . WC_HTTPS::force_https_url( "$path/cod.png" ) . '" alt="' . esc_attr( $title ) . '" />';
    elseif( $gateway_id == 'ppec_paypal' || 'paypal' )
        return $icon;

    return $icon;
}

代码位于事件子主题(或主题)的 function.php 文件或任何插件文件中。

在 WooCommerce 3 上测试并有效。



php - 在 Woocommerce 付款方式标题上添加图片-LMLPHP

关于php - 在 Woocommerce 付款方式标题上添加图片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46823669/

10-15 03:29