php 重新排序单个产品布局#woo

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重新排序单个产品布局#woo相关的知识,希望对你有一定的参考价值。

//Change the layout of Single Product page by reordering the priorities
add_action( 'woocommerce_before_single_product', 'single_product_layout' );
  function single_product_layout() {

    // Disable the hooks so that their order can be changed.
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_rating', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_sharing', 50 );
    
    // Put the price first.
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 5 );
    // Include the category/tags info.
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 10 );
    // Then the product short description.
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 40 );
    // Move the title to near the end.
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 50 );
    // And finally include the 'Add to cart' section.
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 60 );
  }

以上是关于php 重新排序单个产品布局#woo的主要内容,如果未能解决你的问题,请参考以下文章

Woo-commerce 评论不适用于单个产品页面

php facetwp布局构建器woo / price

php 内容低于产品图片#woo

php 可变产品价格范围#woo

php 商店:创建自定义排序选项#woo

php 商店:重命名排序选项#woo #rename