• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Bricks Builder - Build WordPress Sites That Rank

Bricks Builder - Build WordPress Sites That Rank v1.9.7.1

No permission to download
2 suggestions:
1) Bricks has known issues with Cloudflare rocket loader. Try disabling it. (https://academy.bricksbuilder.io/article/known-issues/)
2) Enable loading through AJAX option (https://forum.bricksbuilder.io/t/solved-canvas-blank-issue/3252)
this recommendation fixed the issue for me. Thanks.

I love Babiato

Bricks Issue and Fixes for WordPress​

Made some notes to myself so I share them here.

1 ) Bricks > Settings > Builder > Disable Rest API render
https://forum.bricksbuilder.io/t/solved-canvas-blank-issue/3252

2 ) Cloudflare > Rules > Page Rules
https://academy.bricksbuilder.io/article/known-issues/

3 ) CloudFlare > Speed > Optimization > Disable Rocket Loader
 
Last edited:
this recommendation fixed the issue for me. Thanks.

I love Babiato

Bricks Issue and Fixes for WordPress​

Made some notes to myself so I share them here.

1 ) Bricks > Settings > Builder > Disable Rest API render
https://forum.bricksbuilder.io/t/solved-canvas-blank-issue/3252

2 ) Cloudflare > Rules > Page Rules
https://academy.bricksbuilder.io/article/known-issues/

3 ) CloudFlare > Speed > Optimization > Disable Rocket Loader
Ah, great! I don't use CloudFlare so that's probably why I didn't encounter this issue :)
Glad you solved it quickly! It can be brain numbing sometimes when you spend hours trying to fix something...
 
  • Like
Reactions: Lalo and GambleGang
this recommendation fixed the issue for me. Thanks.

I love Babiato

Bricks Issue and Fixes for WordPress​

Made some notes to myself so I share them here.

1 ) Bricks > Settings > Builder > Disable Rest API render
https://forum.bricksbuilder.io/t/solved-canvas-blank-issue/3252

2 ) Cloudflare > Rules > Page Rules
https://academy.bricksbuilder.io/article/known-issues/

3 ) CloudFlare > Speed > Optimization > Disable Rocket Loader
I had this problem with Oxygen when I was using it. And the problem with CloudFlare was solved in exactly the same way, using the "Rules" section and constructor URL exceptions. It's good that you wrote about it here, it will be useful to other people.
 
I get "The package could not be installed. No valid plugins were found." for all versions here i tried, anyone know why it wont install? Other plugins install correctly.
 
How to Create a Bricks "Blueprint" Site for Rapid Development (Every WP & Plugin Setting Revealed!)

Code Snippets Used:

1. Custom Image Sizes
PHP:
<?php
add_theme_support( 'post-thumbnails' );
add_image_size( 'image-480', 480, 9999 );
add_image_size( 'image-640', 640, 9999 );
add_image_size( 'image-720', 720, 9999 );
add_image_size( 'image-960', 960, 9999 );
add_image_size( 'image-1168', 1168, 9999 );
add_image_size( 'image-1440', 1440, 9999 );
add_image_size( 'image-1920', 1920, 9999 );

function my_custom_sizes( $sizes) {
    return array_merge( $sizes, array(
    'image-480' => 'image-480',
    'image-640' => 'image-640',
    'image-720' => 'image-720',
    'image-960' => 'image-960',
    'image-1168' => 'image-1168',
    'image-1440' => 'image-1440',
    'image-1920' => 'image-1920',
    ));
}
add_filter( 'image_size_names_choose', 'my_custom_sizes');

2. Custom Excerpt Length
PHP:
<?php

add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
function custom_excerpt_length( $length ) {
    return 20; //number of words. Default is 55.
}
 
Is anybody else having problem installing custom fonts woff2? I create a custom font, select all the variants, upload the fonts etc and when i hit publish update only 1 font variant is available.

It drives me nuts, clean wordpress installation all updated.
 
Is anybody else having problem installing custom fonts woff2? I create a custom font, select all the variants, upload the fonts etc and when i hit publish update only 1 font variant is available.

It drives me nuts, clean wordpress installation all updated.
It's a pain in the nuts. I don't use it all anymore. Better option is to use Matthias Altmann's excellent script to load your web fonts. https://www.altmann.de/en/blog-en/code-snippet-custom-fonts/

You'll want a custom function plugin like Advanced Scripts or WP CodeBox to use his script, you probably already are anyways if you're into Bricks.
 
  • Like
Reactions: finalcorp and Mulen
Is anybody else having problem installing custom fonts woff2? I create a custom font, select all the variants, upload the fonts etc and when i hit publish update only 1 font variant is available.

It drives me nuts, clean wordpress installation all updated.
It works fine for me. All font variants get loaded.
 
  • Like
Reactions: GambleGang
It works fine for me. All font variants get loaded.
WTF i am doing wrong? I just add a custom font, add the variants (woff2) hit publish update and then only 1 variant is available.

Clean wordpress installation. no other plugins.
 
WTF i am doing wrong? I just add a custom font, add the variants (woff2) hit publish update and then only 1 variant is available.

Clean wordpress installation. no other plugins.
Save every variant one by one and let us know. I'm using variable woff2 with bricks native font settings and it's working fine.
 
Im using WOFF2 and TrueType, (separate sites) weight 400, 700, and 900, all load. both are working as intended for me. V1.7.

try disabling all caching and optimizer plugin and see if it works.
 
  • Like
Reactions: purpletiger
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock