Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #2502580
Migration Follow-Up
Closed

Comments

  • Kathleen started the conversation

    I would like to have the category description appear at the top of the page when you are on that category. Right now, any text that you put in the field for the category appears at the bottom of the page under the products. Can you help me with this?

  •  7,092
    Oliver replied

    Hi,

    Add this code to the functions PHP of the child theme:

    function woocommerce_product_archive_description_move(){
      remove_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 15 );
      add_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 1 );
    }
    add_action('init', 'woocommerce_product_archive_description_move');

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver