【问题标题】:Edit myaccount navigation menu edit adresses link编辑我的帐户导航菜单编辑地址链接
【发布时间】:2020-09-27 19:05:54
【问题描述】:

您好,我有一个只有帐单详细信息的 woocommerce 网站,所以我真的不需要“https://www.lawrence.dk/my-account/edit-address/”链接,我宁愿它直接转到https://www.lawrence.dk/my-account/edit-address/billing/,但我似乎找不到任何方法。

如何编辑 myaccount 导航链接,使其直接转到该链接?

【问题讨论】:

    标签: php html wordpress woocommerce


    【解决方案1】:

    你来了

    function filter_woocommerce_get_endpoint_url( $url, $endpoint, $value, $permalink ) {
        // DEBUG INFO (uncomment if needed)
        //echo '<pre> 1. ', print_r($url, 1), '</pre>';
        //echo '<pre> 2. ', print_r($endpoint, 1), '</pre>';
        //echo '<pre> 3. ', print_r($value, 1), '</pre>';
        //echo '<pre> 4. ', print_r($permalink, 1), '</pre>';
    
        if( $endpoint === 'edit-address' ) {     
            // Custom URL
            $url = site_url() . '/my-account/edit-address/billing/';     
        }
    
        return $url;
    
    }
    add_filter( 'woocommerce_get_endpoint_url', 'filter_woocommerce_get_endpoint_url', 10, 4 );
    

    【讨论】:

    • 像魅力一样工作!
    猜你喜欢
    • 2022-01-20
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多