[Support request] Blocks and styles for WooCommerce

Home Forums Support [Support request] Blocks and styles for WooCommerce

Home Forums Support Blocks and styles for WooCommerce

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1436309
    caleidoscopic

    What do you think is the best way to create an alternative home for Seller?
    I need to add products, product categories, etc, with the same style as in the shop

    Will there be any options in Generateblocks for WooCommerce?

    Do you recommend any plugin that shows blocks for WooCommerce that has more options than the official one?
    I don’t like very much how it works at a responsive

    Thanks!

    #1436518
    David
    Staff
    Customer Support

    Hi there,

    personally – i still use the Woocommerce shortcodes. These maintain the themes styles and responsiveness.

    https://docs.woocommerce.com/document/woocommerce-shortcodes/

    As for generate blocks – no plans at this time to integrate with Woocommerce. We’re expecting Woo to become a full block editing experience in the near future – once we know what direction they are taking we may revisit that.

    #1939778
    cjenti

    hi, juste a trick for responsive WC blocks.

    You have a 6 products WC block full width on “.page-id-2” and want to display 3 lines with two products on mobile instead of 6 products lines (1 for each product, as WC usually does).
    Just add this CSS:


    @media
    (max-width: 768px) {
    .page-id-2 .wc-block-grid.has-6-columns .wc-block-grid__products {
    display: flex;
    }
    .page-id-2 .wc-block-grid.has-6-columns .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
    padding: 0;
    margin: 0 0 24px;
    }

    Have a good day!

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