• Resolved AJD

    (@ajd)


    On a woocommerce category / taxonomy page, I’m trying to move the archive description below the page title.

    Using the snippet below I’m able to remove the archive description, but I can’t figure out how to get it to output it again below the h1 – page-title.

    remove_action( 'genesis_before_loop', 'genesis_do_taxonomy_title_description', 15

    I have tried adding it back at many spots, but no luck.

    Any thoughts on this?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Nick C

    (@modernnerd)

    Have you tried this?

    add_action( 'woocommerce_archive_description', 'genesis_do_taxonomy_title_description' );

    Or this, is you’d like it immediately below the title:

    add_action( 'woocommerce_archive_description', 'genesis_do_taxonomy_title_description', 9 );

    Thread Starter AJD

    (@ajd)

    Perfect, thanks!

    • This reply was modified 8 years, 12 months ago by AJD.
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Move Archive Description below Page Title’ is closed to new replies.