• Resolved bimofix

    (@bimofix)


    Hello

    I would like to display the archive description the the bottom because I have quite a lot of content. I tried it with this code:

    add_action( 'wp', 'tu_move_wc_archive_description' );
    function tu_move_wc_archive_description() {
        if ( is_archive() ) {
            remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
            remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );
    
            add_action( 'woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 10 );
            add_action( 'woocommerce_after_main_content', 'woocommerce_product_archive_description', 10 );
        }
    }

    It worked a few days ago but after the latest update it’s not working anymore… Can you help me with this?

    Regards,
    Felix

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Rynald0s.a11n

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @bimofix!

    Try the following code and see if that helps:

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 100 );

    Cheers!

    Thread Starter bimofix

    (@bimofix)

    Hi thanks for the fast reply!

    I added the code to the “archive-product.php” page but it’s also not working…

    Plugin Support Rynald0s.a11n

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @bimofix!

    You need to add it to your themes functions.php file or a via a plugin like https://wordpress.org/plugins/code-snippets/

    Cheers!

    Plugin Support Rynald0s.a11n

    (@rynald0s)

    Automattic Happiness Engineer

    Howdy.

    We haven’t heard back from you in a while, so I’m going to go ahead and mark this thread as resolved. If you have any other questions please start a new thread.

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Move page descrition to the bottom’ is closed to new replies.