L
L
ligisayan2015-12-22 17:04:39
Electronic commerce
ligisayan, 2015-12-22 17:04:39

How to display the full description of the product on wordpress?

Hello. I want to display their full description in the goods in the online store built on wordpress + woocommerce. By default, the output is truncated in the theme.

$post_content = !empty($product->post->post_excerpt) ? $product->post->post_excerpt : '';
  $post_content = apply_filters('the_excerpt', $post_content);
  $post_content = str_replace(']]>', ']]>', $post_content);

how to exclude clipping and display the whole description?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
L
ligisayan, 2019-03-31
@ligisayan

it should have been output like this:
echo $product->post->post_content;

6
65536, 2015-12-22
@65536

WordPress - collective madness

Y
Yakov Vylegzhanin, 2015-12-22
@vylegzhanin

So use the_contentinsteadthe_excerpt

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question