Archived topic
Move element to below Product sub categories
5 replies · Started by David on April 7, 2022
Hi everyone,
I am using an element for each of the main product category for the site with an example linked below.
I am using: woocommerce_archive_description
However this places the Element above the list of sub categories.
How can I switch this around so the elememnt is below the sub-categories ?
(tried priority, but that does not seem to be relevant as I only have one element)
TIA, Dave
Hi there,
theres the woocommerce_after_main_content hook you can use that comes after the main content.
Thanks David, sort of worked, but the categories, and the element are side by side!
Hmmm.... try adding this CSS:
.woocommerce.archive .site-content {
flex-wrap: wrap;
}
Thanks, that fixed it!
Dave
Glad to hear that!