盖伊,我有一个简单的问题,但不知道如何解决它。我试图修改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 );
任何人都可以给我建议我做错了什么。