wordpress 在woocommerce快速商店存档页上添加额外的选项字段

ruarlubt  于 2023-02-11  发布在  WordPress
关注(0)|答案(1)|浏览(145)

我最近在我的wordpress woocommerce中添加了一个名为“Extra product options For WooCommerce“的插件。
我添加了一个url getter字段到单个产品页面,如下所示:
url field on single product page
但我需要它显示在快速商店存档页太好。看看下面的图像:
I need url getter field goes on the red section I draw on image
我怎么做呢?有没有解决这个问题的方法?

wfauudbj

wfauudbj1#

没关系..我找到答案了:把下面的代码添加到你的函数中。php:

add_filter('thwepof_hook_name_before_single_product','thwepof_change_prepare_hook');
    function thwepof_change_prepare_hook(){
    return 'woocommerce_before_add_to_cart_button';
}

相关问题