Attribute description below products on attribute page

Hello,

The attribute page has description that needs to be below the products/ in the attribute edit I cannot see the above/below option as in category.



Please assist :)

Comments

  • Hi,

    there is no such possibility at this moment but we may add it with next theme update.

  • I was using this snippet to move the description below the products, but now it is not working. Can you suggest an alternative:



    add_action('woocommerce_archive_description', 'custom_archive_description', 2);


    function custom_archive_description(){ 

     if ( is_product_category() ){

      remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );

      add_action('woocommerce_after_main_content', 'woocommerce_taxonomy_archive_description', 5 );

     }

    }

  • If you refer to a category description, then you can put it in the Bottom content field.

    Best regards

Sign In or Register to comment.