Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1337444

    Hi,

    is there a easy solution for getting text on tag sites above the products? Right now, the text “Test” is below the products.

    Best regards,
    Alex

    #1337612

    Hi Alex,

    Please try the following in Quick CSS under Enfold->General Styling:

    .tax-product_tag .term-description {
        position: absolute;
        top: 10px;
    }

    Best regards,
    Rikard

    #1337991

    Hi Rikard,

    thank you, this is not working. I added some text + images, see the result on the page. Is there something i can do?

    Best regards,
    Alex

    • This reply was modified 2 years, 9 months ago by combra.
    #1338025

    Hi,

    Thanks for the update. Where exactly are you adding the text on the backend?

    Best regards,
    Rikard

    #1338033

    .tax-product_tag .term-description {
    position: absolute;
    top: 10px;
    }

    #1338052

    Hi,

    Thanks for the update. I’m asking where you are adding the text and images in the backend of WordPress? Not where you are adding the CSS.

    Best regards,
    Rikard

    #1338211

    Products -> Tags -> nachhaltig

    The CSS code only helps for one line. As soon as there are more lines, whether text or images, the content protrudes into the automatically added products.

    • This reply was modified 2 years, 9 months ago by combra.
    #1338227

    Hi,

    Thanks for the update. If you are looking to customise the tag pages in WooCommerce, then please refer to this: https://wordpress.org/support/topic/create-custom-template-for-category-pages-in-woocommerce/

    Best regards,
    Rikard

    #1338251

    Hi,

    does this have to be done with a template? I just want to change the order on the tags page. Unfortunately I have no idea about the templates and I only need this for the tags page, not for the categories.

    Best regards,
    Alex

    #1338328

    Hi Alex,

    Can you try replace this code:

    .tax-product_tag .term-description {
        position: absolute;
        top: 10px;
    }

    with:

    .archive.tax-product_tag .entry-content-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .archive.tax-product_tag .woocommerce-notices-wrapper {
        order: 0;
    }
    
    .archive.tax-product_tag .term-description {
        order: 1;
    }
    
    .archive.tax-product_tag .product-sorting {
        order: 2;
    }
    
    .archive.tax-product_tag .products {
        order: 3;
    }

    Let us know if it helps.

    Best regards,
    Nikko

    #1338473

    Hi Nikko,

    this works perfect. Good work :)

    Best regards,
    Alex

    #1338559

    Hi Alex,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘First text, than products’ is closed to new replies.