Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1102608

    Hi,
    I need to change on thing in the product-cat pages. With the last theme update I see firstly the term-description of the category, and secondly I see the product’s grid.
    I need to see first the product-grid and below the term-description, how can I do it?
    Example: (first link)

    Other question. I need to see the short description product in the product grid, below the title. How can I do it?
    Example: (second link)

    Best regards!

    #1103887

    Hello,

    This is the kriesi support?? Only a forum where nobody answer 4 days later?? Can any moderator help me?? I think my question must be so easy to solve.

    Thank you

    #1104397

    Hi,

    We are very sorry for the late response.

    You should be able to move the content of the product archive pages using hooks.

    Example:

    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', 40 );
    add_action( 'woocommerce_after_main_content', 'woocommerce_product_archive_description', 40 );
    

    That code should move the description below the product grid.

    Best regards,
    Ismael

    #1104492

    Hi Ismael,

    I got it some days ago, because it was quite urgent.

    Regards

    #1104806

    Hi,

    Alright. Glad that you found a solution. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.