[Support request] Woocommerce shop alignment options for tablet

Home Forums Support [Support request] Woocommerce shop alignment options for tablet

Home Forums Support Woocommerce shop alignment options for tablet

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #968773
    moderndev

    Hello,

    I was wondering if you could add options to edit shop settings on tablet.

    In particular it would be great to do a two column layout in woocommerce archive pages on Tablet.

    Responsive layout options

    Cheers,

    Peter

    #968936
    Tom
    Lead Developer
    Lead Developer

    We’ll be doing this in GPP 1.9 – it’s one of the highest priorities ๐Ÿ™‚

    For now, it’s possible with CSS if you need help.

    Thanks!

    #968983
    moderndev

    Hey Tom,

    Thats great!

    Two questions. When can I expect 1.9? and are you also working on an off canvas cart?

    Best,

    Peter

    #968984
    moderndev

    Oops sorry wrong thread.

    Not enough sleep. So forget the second question it not related. Unless you have an answer?

    #969150
    Tom
    Lead Developer
    Lead Developer

    1.9 will likely be a September release we’re thinking.

    An off-canvas cart isn’t in the plans at the moment, but an off-canvas filter system is ๐Ÿ™‚

    #969180
    moderndev

    Is there a way to resolve this via css in the mean time?

    #969642
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Give this a shot:

    @media (max-width: 1000px) and (min-width: 769px) {
        .wc-related-upsell-columns-4 .related ul.products, 
        .wc-related-upsell-columns-4 .up-sells ul.products, 
        .woocommerce .wc-columns-container.wc-columns-4 .products {
            -ms-grid-columns: (1fr)[2];
            grid-template-columns: repeat(2,1fr);
        }
    }
    #969705
    moderndev

    Hey Tom,

    Unfortunately, that didn’t seem to have any effect and I noticed a strange bug with the hover image flipper.

    Bug

    Best,

    Peter

    #970232
    Tom
    Lead Developer
    Lead Developer

    Is the CSS still added to the site? If not, can you re-add it?

    #970286
    moderndev

    Hey Tom,

    Yes its been on the site all day. I have not removed it.

    Its in my child theme style.css.

    css

    Best,

    Peter

    #970579
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try running your CSS through a validator: https://jigsaw.w3.org/css-validator/#validate_by_input

    You seem to have some broken CSS on line 287-289.

    If you fix that, it should work.

    #970769
    moderndev

    Hey Tom,

    Thanks for that. I fixed the error on 289. I had a couple of extra curly braces.

    I tested after and it still was not working. So I ran the validator again and got an error with the code you gave me.

    error

    I have never used this so I cannot see the issue. Can you?

    Best,

    Peter

    #970941
    David
    Staff
    Customer Support

    Hi there,

    this CSS property is unrecongized:

    -ms-grid-columns: (1fr)[2];

    It is to provide support for the old IE10 browser – so you can remove that line if you’re not concerned about ie10 support.

    #971329
    moderndev

    Thanks David,

    I am not really that concerned about IE10, but the main point is that the css is not actually functioning.

    I am not getting a two column layout.

    Best,

    Peter

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