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

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

WooCommerce:重新排序選項(xiàng)卡而不顯示空選項(xiàng)卡

WooCommerce:重新排序選項(xiàng)卡而不顯示空選項(xiàng)卡

PHP
慕姐8265434 2023-06-24 15:48:52
我不確定我是否理解正確,但你可以使用parse_url. 在你的情況下:$url = 'https://example.com/page.php?cid=123456&eventid=965254&trackerid=2523654&amount1=233.55&amount2=156.99&catgory1=clothing&category2=accessories&itemsku1=01235654&itemsku2=525124&quantity1=1&quantity2=3';$temp_array = [];parse_str(parse_url($url, PHP_URL_QUERY), $temp_array);var_dump($temp_array);這將生成一個(gè)包含所有查詢參數(shù)的數(shù)組。然后您可以訪問(wèn)每個(gè)參數(shù),例如:echo $temp_array['cid'];echo $temp_array['catgory1'];echo $temp_array['catgory2'];echo $temp_array['itemsku1'];echo $temp_array['itemsku2'];我想重新排序產(chǎn)品頁(yè)面上的選項(xiàng)卡。為此,我使用以下代碼:function reorder_product_tabs( $tabs ) {    $tabs['gm_fic_ingredients']['priority'] = 10;    $tabs['gm_fic_nutritional_values']['priority'] = 30;    $tabs['gm_fic_allergens']['priority'] = 20;    $tabs['additional_information']['priority'] = 100;    return $tabs;}add_filter( 'woocommerce_product_tabs', 'reorder_product_tabs', 98 );如果每個(gè)選項(xiàng)卡都有一些內(nèi)容,效果會(huì)很好。但如果選項(xiàng)卡為空,它將顯示為沒(méi)有標(biāo)題或內(nèi)容的空元素。只有標(biāo)記。有辦法防止這種情況嗎?
查看完整描述

1 回答

?
青春有我

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

我現(xiàn)在使用以下代碼:


add_filter( 'woocommerce_product_tabs', 'product_tabs_additional_information_priority', 98 );

function product_tabs_additional_information_priority( $tabs ) {

    global $product;

    $tabs['additional_information']['priority'] = '100';


    return $tabs;

}

它僅更改一個(gè)選項(xiàng)卡的優(yōu)先級(jí),對(duì)沒(méi)有內(nèi)容的選項(xiàng)卡沒(méi)有影響。


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

添加回答

舉報(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)