• Resolved Alundra

    (@alundra)


    On my product pages in Woocommerce I’ve clicked add media, then made a gallery with 4 columns. When I view this in Blocksy it is just one column. This doesn’t happen on any other theme. How do I fix this?

    Image of issue
    https://imgur.com/a/YfxvuKN

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @alundra

    Just to confirm this 100% – this is happening for WooCommerce product descriptions, correct?

    Thanks!

    Thread Starter Alundra

    (@alundra)

    Yep only in there ??

    I can’t even see a media button on my other pages etc, but Woocommerce uses the other editor.

    • This reply was modified 1 year, 5 months ago by Alundra.

    Hi @alundra

    Managed to reproduce this and noted the information down for our devs. I’ll get back to you as soon as I have something. ??

    Thanks!

    Hi @alundra

    So I’ve discussed this with the team and unfortunately, this is related to the legacy Tiny MCE editor which is slowly losing support.

    Though, this should be an easy CSS fix for a case by case basis. Please copy paste the following snippet into the Additional CSS pane of the Customiser and things should start looking better.

    .gallery {
    	display: grid;
    	grid-gap: 15px;
    }
    
    .gallery-columns-2 {
    	grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-columns-3 {
    	grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-columns-4 {
    	grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-columns-5 {
    	grid-template-columns: repeat(5, 1fr);
    }
    
    .gallery-columns-6 {
    	grid-template-columns: repeat(6, 1fr);
    }
    
    .gallery-columns-7 {
    	grid-template-columns: repeat(7, 1fr);
    }
    
    .gallery-columns-8 {
    	grid-template-columns: repeat(8, 1fr);
    }
    
    .gallery-columns-9 {
    	grid-template-columns: repeat(9, 1fr);
    }

    Hope this helps!

    Thanks.

    Thread Starter Alundra

    (@alundra)

    Thank you SO MUCH! Really appreciate it.

    I don’t know why WooCommerce is using an older editor but they need to upgrade for sure.

    Thank you as well, @alundra ??

    Have an awesome weekend!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Blocksy removes my gallery structure?’ is closed to new replies.