如何取消Wordpress中产品描述的字数限制?

问题描述 投票:0回答:1

我使用 Woocommerce 为我的 Wordpress 网站建立了一个在线商店。我正在使用产品摘录块,但它在描述中不断截断我的文本。我无法让它显示文本的其余部分。

这是产品页面:https://www.angosta.co/producto/prohibido-tocarse/

我尝试添加在网上找到的代码片段,但没有任何效果。例如,

function force_full_excerpt( $excerpt ) {
    // Check if we are on a single product page
    if ( is_singular( 'product' ) ) {
        // Return the full content instead of the excerpt
        return apply_filters( 'the_content', get_the_content() );
    }
    return $excerpt;
}
add_filter( 'get_the_excerpt', 'force_full_excerpt', 10, 1 );
wordpress woocommerce wordpress-theming wordpress-gutenberg
1个回答
0
投票

尝试这个定制解决方案:

function custom_product_description() {
    remove_filter( 'the_excerpt', 'wp_trim_excerpt' );
    return get_the_excerpt();
}
add_filter( 'woocommerce_short_description', 'custom_product_description' );
© www.soinside.com 2019 - 2024. All rights reserved.