Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #528317

    Hey,

    I want to move my category descriptions under the products.

    Regards
    Alex

    #528617

    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

    #528634

    I want to set description text from product category above listed products and sub categorys. Screen added.

    #528991

    Hi,

    Could you provide us with a link to the site in question so that we can take a closer look please?

    Thanks,
    Rikard

    #529046

    sure

    #529874

    Hey!

    try this code in Quick CSS field:

    .term-description {
    top: 250px;
    }
    li.product-category.product.first {
    top: -145px;
    }
    

    Regards,
    Andy

    #530841

    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.

    • This reply was modified 9 years ago by combra.
    #531416

    Is there no way to work with template? To adjust all categorys all times with css is much work.

    #532509

    Any solution? :(

    #533014

    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

    #533101

    Yeah, thats it! Thanks

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Moving category description under products’ is closed to new replies.