drb56625 2017-12-05 19:36
浏览 160
已采纳

我想配置位于woocommerce帐户页面中的订阅端点?

What i want is to edit a subscription in my account page of woocommerce. i have shared a picture below, of what exactly I want to edit.

This is the link of picture, what i want to edit is highlighted with red pen:

This is the link of picture, what i want to edit is highlighted with red pen

I want to edit the things which are highlighted with red pen. but i am unable to locate the exact page of this where i can edit things. actually i want to change the link of update button in subscription table. the URL of the page is like :

https://www.example.com/my-account/subscriptions/ There is no subscription page in pages menu of wordpress.

I am also unable to see this in endpoint of woocommerce.

These are the end points

Is there any way to do it ?

  • 写回答

1条回答 默认 最新

  • dounei9043 2017-12-05 20:30
    关注

    First have a look to that: Template structure & Overriding templates via a theme… It explains how to override correctly woocommerce templates via your active theme.

    The templates that you will override have to be located in woocommerce folder inside your theme folder…

    Now in the woocommerce-subscriptions plugin folder, you have also a template folder, and you can pick the necessary templates that you need to change, copying them into that woocommerce folder located in your theme, taking care to keep path (subfolder hierarchy)…

    So you will copy from: wp-content/plugins/woocommerce-subscriptions/templates/myaccount(5 files inside)… to wp-content/themes/your-theme/woocommerce/myaccount (where your-theme is the folder name of your theme)…

    Now you can edit templates just like the woocommerce ones…

    The subscription end point is not listed in woocommerce as it's not a default end point

    To rename the menu label for "Subscriptions", you can use this:

    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;
    }
    

    The code goes on function.php file of your active child theme (or theme) or in any plugin file.

    Tested and working

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退