我想修改/覆盖用woocommerce-functions.php文件编写的函数,但我不想修改woocommerce-functions.php文件。这就是我想在插件或我的主题中实现这一点。
答案 0 :(得分:13)
可以覆盖woocommerce功能,我最近这样做,并将我的所有woocommerce扩展功能添加到我的主题的functions.php文件中,以便woocommerce插件文件保持不变,可以安全更新。
此页面提供了一个示例,说明如何删除其操作并将其替换为您自己的操作 - http://wordpress.org/support/topic/overriding-woocommerce_process_registration-in-child-theme-functionsphp
此页面提供了一个扩展其功能而不删除其功能以及使用子主题的示例 - http://uploadwp.com/customizing-the-woocommerce-checkout-page/
希望这会有所帮助:)
答案 1 :(得分:2)
如果您有子主题,则可以将相关文件复制到主题并重写副本。该副本将优先于WooCommerce版本使用。
答案 2 :(得分:1)
WooCommerce 提供模板系统。可以覆盖woocommerce功能。在不修改核心文件的情况下自定义WooCommerce的好方法是使用钩子 -
如果使用钩子添加或操作代码,可以将自定义代码添加到主题functions.php文件中。
要执行自己的代码,可以使用action hook do_action('action_name');来挂钩。
请参阅下文,了解有关放置代码的位置的一个很好的示例:
add_action('action_name', 'your_function_name');
function your_function_name()
{
// Your code
}
使用apply_filter('filter_name',$ variable)调用过滤钩子的代码。
要操纵传递的变量,您可以执行以下操作:
add_filter('filter_name', 'your_function_name');
function your_function_name( $variable )
{
// Your code
return $variable;
}
在这里,你可以获得WooCommerce Action和Filter Hook - https://docs.woothemes.com/wc-apidocs/hook-docs.html
答案 3 :(得分:0)
我需要为移动设备上的视频添加“播放”按钮(默认情况下,此按钮仅显示在桌面上)。
需要覆盖wp-content/themes/gon/framework/theme_functions.php
中的函数:
function ts_template_single_product_video_button(){
if( wp_is_mobile() ){
return;
}
global $product;
$video_url = get_post_meta($product->id, 'ts_prod_video_url', true);
if( !empty($video_url) ){
$ajax_url = admin_url('admin-ajax.php', is_ssl()?'https':'http').'?ajax=true&action=load_product_video&product_id='.$product->id;
echo '<a class="ts-product-video-button" href="'.esc_url($ajax_url).'"></a>';
}
}
我发现this instruction声明了If you use a hook to add or manipulate code, you can add your custom code to your theme’s functions.php file.
我已经有wp-content/themes/gon-child/functions.php
,(即原来的 gon 主题已复制到 gon-child ),所以我要做的是:
// Enable tour video on mobile devices
remove_action('ts_before_product_image', 'ts_template_single_product_video_button', 1);
add_action('ts_before_product_image', 'ts_template_single_product_video_button_w_mobile', 1);
function ts_template_single_product_video_button_w_mobile(){
global $product;
$video_url = get_post_meta($product->id, 'ts_prod_video_url', true);
if( !empty($video_url) ){
$ajax_url = admin_url('admin-ajax.php', is_ssl()?'https':'http').'?ajax=true&action=load_product_video&product_id='.$product->id;
echo '<a class="ts-product-video-button" href="'.esc_url($ajax_url).'"></a>';
}
}
?>