Это видео недоступно.
Сожалеем об этом.

Bricks 1.5 - Layout Elements, Nestable Elements, Infinite Scroll (and so much more ..)

Поделиться
HTML-код
  • Опубликовано: 15 авг 2024
  • This release container more than 150 changes with a focus on providing a more powerful & streamlined workflow & builder interface:
    0:00 Intro
    1:33 Layout Elements
    12:12 Converting Your Container Layout
    15:19 Nestable Elements (Accordion, Slider, Tabs)
    19:52 Structure Panel Improvements
    24:54 Global Classes Improvements
    27:30 Media Query Loop (e.g. Image Gallery)
    31:39 Infinite Scroll
    34:26 Color Palette Improvements
    38:50 Code Element
    42:58 New Keyboard Shortcuts
    46:00 Active font-family & font-weight in placeholder
    47:20 Conditional Display Logic via filter (bricks/element/render)
    49:10 Performance Improvements
    53:19 Pin Global Elements
    54:03 Outro
    Layout Elements:
    academy.bricks...
    Nestable Elements:
    academy.bricks...
    Full Changelog:
    bricksbuilder....

Комментарии • 55

  • @jamesl.223
    @jamesl.223 2 года назад +30

    I have never been more impressed with both the quality of the software but also the openness of which bricks shares with the community. if you are on the fence BUY THIS, it is simply that good.

    • @ChrisMooreOfficial
      @ChrisMooreOfficial 2 года назад +2

      I couldn’t agree more! Superb support, education, communication, and development philosophy.

    • @jerzyhaa
      @jerzyhaa Год назад

      Well, I bought it...

  • @VijayKumarIM
    @VijayKumarIM 2 года назад +5

    Thomas just cracked the code of improving workflow speed, which almost every builder ignored. "Details matter"
    Just see how many quality improvements. Can't wait to play with 1.5.

  • @Zp00kie
    @Zp00kie Год назад +2

    This is by far the best thought out page builder I've seen to date, and I've tried them all.

    • @BawlBag
      @BawlBag Год назад

      How did you find Breakdance (assuming you've tried it)?

    • @Zp00kie
      @Zp00kie Год назад

      @@BawlBag in my opinion Bricks is a lot more intuitive. And performance is unmatched to date.

  • @VanfireOfficial
    @VanfireOfficial 2 года назад +8

    Thank you, Thomas. We really appreciate all your efforts.

  • @maxziebell4013
    @maxziebell4013 2 года назад +6

    Hey Thomas, much appreciated 👍… awesome release and we’ll deserved that you onboarded all the Oxygen users and are getting so much love for your product. Delivering with this really hot weather… in Germany and Cyprus, where ever you’re currently working from. Congratulations 🎉

  • @andyvonbusse3503
    @andyvonbusse3503 2 года назад +7

    Awesome. Love the query loop on the slider!

  • @kevinrittershaus9380
    @kevinrittershaus9380 2 года назад +2

    Amazing. Bricks just keeps getting better!

  • @sebak2003
    @sebak2003 Год назад +2

    Excellent work! Continue in this way, the performance in a test migrating from Elementor to Bricks is outstanding !! 👏👏👏

  • @kamilpitonak1129
    @kamilpitonak1129 2 года назад +2

    The greatest thing that happened to website creators since sliced bread! Thank you!

  • @russelschuster8036
    @russelschuster8036 Год назад

    Thanks for this video. Please keep more videos coming. It is very important for developers to understand and use the CMS as standard practice.

  • @TheKoppi99
    @TheKoppi99 2 года назад +1

    Simple and the BEST! this update is a gamechanger! very intuitive and simple to use. super faaaasst! great work from the devs. Thank you!

  • @Multilive1000
    @Multilive1000 2 года назад +5

    Still waiting on a good CSS grid implementation

  • @annebovelett
    @annebovelett 2 года назад

    Thank you very much, again, Thomas & Team! 🤗

  • @Multilive1000
    @Multilive1000 2 года назад +5

    Please make something simular to the menu builder of Breakdance. Its so nice to have in Bricks.

  • @Thunder007de
    @Thunder007de 2 года назад

    Thank you very much for another great release! Thanks Thomas!

  • @JoeFletcher
    @JoeFletcher 2 года назад +15

    If Elementor and Oxygen had a baby, and that kid learned from all their mistakes, it would be Bricks. But better.
    It really is the evolution of page builders. I've yet to find something I don't like about it.

    • @smeagoltheunrealdeviant9357
      @smeagoltheunrealdeviant9357 2 года назад

      Can bricks create websites as complex as Elementor tho?

    • @JoeFletcher
      @JoeFletcher 2 года назад +2

      @@smeagoltheunrealdeviant9357 Absolutely. Probably even better.

  • @Multilive1000
    @Multilive1000 2 года назад +2

    Would love to see a place/ui for management of vars so you do not have to place them in with code. And give and make categories for them. Than everywhere where you type var( it loads them and autocompletes it.

  • @bySterling
    @bySterling 2 года назад +2

    Curious how do the dynamic styling options (animations, parallax etc) modern styling compare to Elementor?

  • @vigilantezack
    @vigilantezack 2 года назад +1

    I'm curious about the conditional logic filter. The filter seems to be generic in the sense that it filters every single possible element that Bricks renders. This means the logic always has to do some kind of test for which element is being rendered. And this, in turn, means that this logical test happens as many times as there are elements on a page.
    I can see that if a page has a lot of elements, say 2000 individual elements, and you only want to filter 1 of them, testing for that element 2000 times doesn't seem efficient.
    I think what I'm saying is that you could maybe reduce processing time of "testing the element" by making the filters a little more granular. For example a filter that just does sections and another that just does containers and then divs. Maybe even filters per block type.
    If I only want to filter an image or a paragraph (special discount code text etc), it doesn't make sense that the filter has to run 2000 times and each one has to run a logical test just to see if it's my specific paragraph ID. If there was a filter narrowed down to just text elements, there is no extra processing for all the rest of the elements.
    It might even be wise to use some kind of dynamic filter naming that runs per-ID. Like "add_filter('bricks/element/render/brxe-29K9Ak3', '...')". I don't know how plausible that is, but WordPress itself uses a lot of filters and actions with dynamic names, such as when filtering Gutenberg blocks. See how WP allows filters for specific blocks for this exact reason, to avoid testing so much: make.wordpress.org/core/2021/02/18/wordpress-5-7-a-new-dynamic-hook-to-filter-the-content-of-a-single-block/
    So I think dynamic named filters that are per block type or even by ID or major sections only, would help reduce processing load for these conditions.

  •  2 года назад

    Amazing! Thanks Thomas

  • @jfiosi
    @jfiosi 2 года назад

    Thanks. Lots to digest.

  • @roberto1693
    @roberto1693 2 года назад

    Stunning

  • @glennrabbypaulin1853
    @glennrabbypaulin1853 2 года назад

    Great features

  • @ReubenHochstetler
    @ReubenHochstetler 2 года назад

    Great stuff!

  • @rework7562
    @rework7562 2 года назад

    Awesome!!! :)

  • @DenGradel
    @DenGradel Год назад

    "27:30 Media Query Loop (e.g. Image Gallery)"
    - I don't understand the Structure: why the Block is inserted in the Container? Why can't Image be inserted in the Container directly? Cause when you were changing the direction to Horizontal, you we doing it on Container level and you were unable to do it on Block level. So, what's the use in the Construction: Container -> Block -> Image, if we can do without Blocks?

  • @bySterling
    @bySterling Год назад

    Could you post some links to some dynamic modern site examples built w Bricks pls?

  • @phkoon
    @phkoon 16 дней назад

    Are there cons to using containers as the only layout elements, set with proper semantic html tagging to structure the design, as done in Elementor? If so, what would they be?

    • @phkoon
      @phkoon 16 дней назад

      Just took a look at the trial version of Bricks and checked out each of them. Except for the Div element, all the Section, Container and (ironically) Block elements are display: flex with the proper semantic tag set, so I think it settles the matter.
      Well, if anyone has anything to add, feel free to do so =D

  • @PLUS-sj4sf
    @PLUS-sj4sf 2 года назад

    Thanx a million! you guys are awesome! is there a way to work with JetPlugins too? that would change everything!

  • @Rollclick
    @Rollclick Год назад

    Will the slider would act as a section automatically?

  • @noe.galarza
    @noe.galarza 2 года назад

    Please, would it be possible to activate the automatic subtitles for the video?

  • @zaitx
    @zaitx Год назад

    Is it possieble to make multiple column layout in one slide and another multi column in second slide?

  • @kappesante
    @kappesante 2 года назад

    wow

  • @etenegro
    @etenegro 2 года назад

    Genial, pero por favor podrían poner subtítulos al video👍

  • @pauserratgutierrez
    @pauserratgutierrez 2 года назад

    Is there a shortcode documentation on the academy?

    • @captteemo9133
      @captteemo9133 2 года назад

      Yes, just google it, or click the info icon in your builder and type in shortcuts in the searchbar

  • @xternalite
    @xternalite 2 года назад

    Do you know why subtitles are unavailable on this video ? Would be good to have it.

    • @captteemo9133
      @captteemo9133 2 года назад

      In my case they are available

    • @xternalite
      @xternalite 2 года назад

      @@captteemo9133 Yes, they are now. That wasn't the case earlier.

  • @boxoffisa
    @boxoffisa 2 года назад

    Can you guys start making short videos too. Like below 10 minutes?
    I need to learn this my in my country the data that can watch this cost my whole day expenditure.

    • @satanishangover
      @satanishangover Год назад

      The video is divided in chapters. You can watch one chapter every day, for example.

  • @CriticalAuthor
    @CriticalAuthor 2 года назад

    Grid is better than flex box.

    • @stripedgoat8470
      @stripedgoat8470 2 года назад +2

      It’s not “better”. It’s just better suitable for certain usecases, as is flexbox in others. Grid is great for making layouts, flexbox is great for positioning elements.