N
N
NilanMayers2017-10-23 20:40:13
WordPress
NilanMayers, 2017-10-23 20:40:13

How to display full product descriptions on category pages below images?

Actually, the question itself is at the top. Please elaborate as I am a woocommerce sucker.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem Abramovich, 2017-10-24
@NilanMayers

Descriptions are displayed by the standard functionality of the VI /
Full through the_content
Brief - the_excerp
The whole task is only in the right hook. For example
Before heading

add_filter( 'woocommerce_shop_loop_item_title', 'dja_wiev_deccription', 5 );
function dja_wiev_deccription (){
  the_content();
}

After Header
add_filter( 'woocommerce_shop_loop_item_title', 'dja_wiev_deccription', 15 );
function dja_wiev_deccription (){
  the_content();
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question