我正在努力修改WooCommerce中的购物车页面。我的主题文件夹中有cart.php
文件,我想在该页面中添加有关产品的一些信息。
我想添加两个钩子:
-
woocommerce_template_single_excerpt
-
woocommerce_template_single_meta
,但我不确定该怎么做。我正在尝试将这些钩子添加到下一个基本代码的某些版本中:
add_action( 'woocommerce_before_cart_contents','matusevitch_cart_page_info' );
function matusevitch_cart_page_info(){
// Your code
}
现在,在功能中,我尝试要么只是为了呼应钩子,要么添加它:
do_action( 'woocommerce_before_cart_contents','woocommerce_template_single_meta' );
我在以前检查过的其他线程中尝试了一些解决方案,但没有此操作。
如何在购物车页面上显示项目摘录?
可以简单地这样做:
add_filter( 'woocommerce_cart_item_name', 'add_excerpt_in_cart_item_name', 10, 3 );
function add_excerpt_in_cart_item_name( $item_name, $cart_item, $cart_item_key ){
$excerpt = wp_strip_all_tags( get_the_excerpt($cart_item['product_id']), true );
$style = ' style="font-size:14px; line-height:normal;"';
$excerpt_html = '<br>
<p name="short-description"'.$style.'>'.$excerpt.'</p>';
return $item_name . $excerpt_html;
}
此代码在您的活动子主题(或主题)或任何插件文件中的function.php文件中。
测试并起作用
尝试这个,
覆盖以下WooCommerce的页面模板,
woocommerce/cart/cart.php in your theme
您会在其中找到一个表HTML/代码。
<th class="product-short-description"><?php _e('Short Description', 'woocommerce'); ?></th>
//add this code in to <thead>..</thead>
<td class="product-short-description" data-title="<?php esc_attr_e('Product Excerpt', 'woocommerce'); ?>">
<?php
echo get_the_excerpt($product_id);
?>
</td>
//add this code in to <tbody>..</tbody>
希望这对您有帮助。