很快,我只想洗掉商店/存檔頁面上的簡短描述。我添加了兩個影像。這將有助于您的理解。我嘗試了很多組合,但沒有在商店頁面上作業。
我找到了一個代碼,但它剛剛在產品頁面上被洗掉了。
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
function woocommerce_template_single_excerpt() {
return;
}


uj5u.com熱心網友回復:
選項 1:要完全洗掉描述,請將以下操作放在您的子主題 functions.php 中
remove_action('woocommerce_after_shop_loop_item_title','electro_template_loop_product_excerpt', 80 );
選項 2:要覆寫該函式,請將以下函式放在您的子主題 functions.php 檔案中
function electro_template_loop_product_excerpt() {
global $post;
// In case you want to limit description for example or output different content there
if ( ! is_object( $post ) || ! $post->post_excerpt || $post->post_excerpt ) {
return;
}
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/389810.html
標籤:php WordPress的 求购 钩子商务
