第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

更改添加到運(yùn)輸方式的圖標(biāo)的位置 Woocommcerce

更改添加到運(yùn)輸方式的圖標(biāo)的位置 Woocommcerce

PHP
心有法竹 2023-10-15 16:47:38
基于這個(gè)問題,我在我正在建立的商店的運(yùn)輸方式中添加了一些圖標(biāo)。我通過使用以下代碼使用了 png 圖像:add_filter( 'woocommerce_cart_shipping_method_full_label', 'filter_woocommerce_cart_shipping_method_full_label', 10, 2 ); function filter_woocommerce_cart_shipping_method_full_label( $label, $method ) { // Use the condition here with $method to apply the image to a specific method.      if( $method->method_id == "flat_rate" ) {   $label = $label.('<img src="https://www.website-link/wp-content/uploads/2020/08/002-truck.png">');} else if( $method->method_id == "local_pickup" ) {   $label = $label.('<img src="https://www.website-link/wp-content/uploads/2020/08/001- discount.png">');       } return $label; }我想改變一件事,但我不知道如何去做。我希望圖標(biāo)顯示在送貨方式名稱旁邊。不,它在下面。關(guān)于如何解決這個(gè)問題有什么想法嗎?
查看完整描述

1 回答

?
qq_遁去的一_1

TA貢獻(xiàn)1725條經(jīng)驗(yàn) 獲得超8個(gè)贊

您需要更改display子主題style.css文件中圖標(biāo)的 css 屬性:


#shipping_method label > img {

    display: inline-block;

}

因此,您可以在以下代碼中對(duì)其進(jìn)行測(cè)試,其中樣式在圖標(biāo)上進(jìn)行了硬編碼:


add_filter( 'woocommerce_cart_shipping_method_full_label', 'filter_woocommerce_cart_shipping_method_full_label', 10, 2 ); 


function filter_woocommerce_cart_shipping_method_full_label( $label, $method ) {

    $style = ' style="display:inline-block;"'; // Style applied to the thumbnails

    

    // Use the condition here with $method to apply the image to a specific method.      

    if( $method->method_id == "flat_rate" ) {

       $label = ' <img src="https://www.website-link/wp-content/uploads/2020/08/002-truck.png"'.$style.'> ' . $label;

    } else if( $method->method_id == "local_pickup" ) {

       $label = ' <img src="https://www.website-link/wp-content/uploads/2020/08/001-discount.png"'.$style.'> ' . $label;      

    } 

    return $label; 

}

代碼位于活動(dòng)子主題(或活動(dòng)主題)的functions.php 文件中。經(jīng)過測(cè)試并有效。


查看完整回答
反對(duì) 回復(fù) 2023-10-15
  • 1 回答
  • 0 關(guān)注
  • 121 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)