4

我正在开发一个基于 Woocommerce 的网站,现在我在单页上。我的疑问是如何在那里重新排序一些钩子。最初,我们有这个顺序(优先级):

<?php 
/*
  * @hooked woocommerce_template_single_title - 5
  * @hooked woocommerce_template_single_price - 10
  * @hooked woocommerce_template_single_excerpt - 20
  * @hooked woocommerce_template_single_add_to_cart - 30
  * @hooked woocommerce_template_single_meta - 40
  * @hooked woocommerce_template_single_sharing - 50
*/
?>

根据我的布局,我需要将元素按以下顺序排列:

1: Title
2: Name of the product category (last level category where that product was classified in the admin)
3: Quantity switch and "add to cart" button
4 and last: Description

如何在我的主题中的“函数”文件上重新定义它?有任何想法吗?

4

2 回答 2

11

这是很久以前的事了,但如果有人感兴趣,请在 functions.php 文件中删除并添加您自己的操作以重新排序单个产品摘要的内容:

remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 5 );
于 2013-10-20T16:53:16.807 回答
1

要将描述插入摘要:

->将 XX 替换为正确的优先级编号

add_action('woocommerce_single_product_summary','woocommerce_product_description_tab', XX ,1)
于 2014-07-24T09:10:20.853 回答