Hey,
I want to move my category descriptions under the products.
Regards
Alex
Hey combra!
Can you send us a link to your page and take a screenshot highlighting what your wanting to do? You can set your reply as private if you wish.
Cheers!
Elliott
I want to set description text from product category above listed products and sub categorys. Screen added.
Hi,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
sure
Hey!
try this code in Quick CSS field:
.term-description {
top: 250px;
}
li.product-category.product.first {
top: -145px;
}
Regards,
Andy
Hey thanks, that moving works not 100%. And what happends if there more categorys/products listed? I added screens.
I can work with 1-3 categorys and it looks fine. If i add a other category, text will be behind product boxes.
I added this code via editor on .css. You can check it with admin login above. URLs where u see this on private content.
Is there no way to work with template? To adjust all categorys all times with css is much work.
Any solution? :(
Hey!
Sorry for the delay. Please remove the css modification then add this in the functions.php file:
// move category description
add_action('init', 'woocommerce_mod');
function woocommerce_mod() {
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_taxonomy_archive_description', 11 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_taxonomy_archive_description', 5 );
}
Best regards,
Ismael
Yeah, thats it! Thanks