在“Woocommerce我的帐户”部分重新排序菜单项

时间:2017-12-19 14:42:50

标签: php wordpress woocommerce account woocommerce-subscriptions

我想移动" Langgan"菜单标签(用于订阅密钥)位于"仪表板"之上" Langgan"加粗。

目前我正在使用以下代码" Langgan"部分在我的主题function.php文件中:

add_filter( 'woocommerce_account_menu_items', 'rename_my_account_menu_items', 0, 15 );
function rename_my_account_menu_items( $items ) {

    // HERE set your new label name for subscriptions
    $items['subscriptions'] = __( 'Custom label', 'woocommerce' );

    return $items;
}

enter image description here

1 个答案:

答案 0 :(得分:0)

要为'subscriptions'键设置自定义标签并重新排序菜单项以便在开头设置,请尝试使用(这将取代您的功能)

add_filter( 'woocommerce_account_menu_items', 'rename_my_account_menu_items', 100, 1 );
function rename_my_account_menu_items( $items ) {
    $ordered_items = array();

    // HERE set your custom label name for 'subscriptions' key in this array
    $subscription_item = array( 'subscriptions' => __( 'Langgan', 'woocommerce' ) );

    // Remove 'subscriptions' key / label pair from original $items array
    unset( $items['subscriptions'] );

    // merging arrays
    $items = array_merge( $subscription_item, $items );

    return $items;
}

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

经过测试和工作

要制作“Langgan”Bold,您需要添加位于活动主题中的styles.css文件,以下CSS规则:

li.woocommerce-MyAccount-navigation-link--subscriptions {
    font-weight: bold !important;
}

OR

nav.woocommerce-MyAccount-navigation > ul > li:first-child {
    font-weight: bold !important;
}