woocommerce单一产品不工作remove_action

时间:2017-01-21 16:13:04

标签: php wordpress

盖伊,我有一个简单的问题,但不知道如何解决它。我试图修改woocommerce单品主题。我在function.php添加代码

中创建了一个子主题

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );

要从主题中删除价格,但对我来说,它不起作用。

所有代码function.php:

<?php

function aloshop_child_enqueue_styles() {

$parent_style = 'aloshop';

wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'aloshop-child',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style )
);
}
add_action( 'wp_enqueue_scripts', 'aloshop_child_enqueue_styles' );

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );

任何人都可以给我建议我做错了什么。

0 个答案:

没有答案