Home Forums WoodMart support forum Move woocommerce_archive_description above title

Move woocommerce_archive_description above title

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #416943

    loralora
    Participant

    Hello

    please help – how to move the contents of the “description” above the Sidebar and above the Title?

    I tried moving the archive-product.php file in the child theme:
    do_action( ‘woocommerce_archive_description’ ); put immediately below do_action( ‘woocommerce_before_main_content’ ); – but that did not help – nothing happens and the layout breaks a little.

    Please help me how to do it correctly for the archive-product.php file?

    Attachments:
    You must be logged in to view attached files.
    #416964

    loralora
    Participant

    I realized that I need to edit this file and move it to a child theme.
    ../wp-content/themes/woodmart/woocommerce/archive-product.php

    But I’m not sure what to do next – please help

    #417221

    Luke Nielsen
    Keymaster

    Hello,

    I suggest you create the category archive by using our Layout builder and there just change the location of the “Archive description” element (move it or define it above the content).

    https://gyazo.com/7c33f3ece7d9a519b7d7874f08225f97

    Let me know if you have any questions, I’d be happy to answer them.

    Kind Regards

    #417229

    loralora
    Participant

    I’m using gutenberg, any other options?

    #417246

    loralora
    Participant

    Okay, to everyone who might ask this question in the future:

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
    
    function addSectionInCategoryArchive() {
    if( is_archive() ){
    echo the_archive_description( '<div class="container">', '</div>' );
    }
    }
    add_action( 'woodmart_after_header', 'addSectionInCategoryArchive', 10);
    #417537

    Luke Nielsen
    Keymaster

    Hello,

    Glad that you managed to sort this out.

    If there’s anything you need, please write me or another member of our help desk team.

    We’re here for you!

    Kind Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Move woocommerce_archive_description above title’ is closed to new replies.