Hello, I’m working live on a new website. I have a problem with global blocks. Blocks appear and disappear from pages 
Any advice please?
Hi @dcheese,
Thanks for reaching out.
Looks like the captcha are no longer working with this error
ERRORE per il proprietario del sito: tipo di chiave non valido
Please deactivate it so we could continue checking, and please provide the page URL where the issue is.
Thanks!
done, sorry 
Hi @dcheese,
I checked and the global block is working,


Or are you referring to the empty pages? Have you modified your theme? It appears that all of your page doesn’t have a footer (.x-colophon) and the one on the home page and contact page are custom made footer through global block. And the only pages that I can see without the global block are the empty pages which I assume you have to manually add global block again.
Thanks!
I’m referring to all the pages. I prefer to add a global block instead of the classic footer. I added the code
function add_global_post() {
if(is_singular('post')){
echo do_shortcode('[cs_gb id=70]');
}}
add_action( 'x_before_site_end', 'add_global_post', 10 );
function add_global_blog_post() {
if( is_home() ){
echo do_shortcode('[cs_gb id=70]');
}}
add_action( 'x_before_site_end', 'add_global_blog_post', 10 );
to the function file, as you told me to do on another website here
I see an empty space instead of the global block… both on firefox and chrome
Problem solved! The columns has the fade in effect in the global block settings. So since the block was at the bottom of the page, it could not completely load
Glad to hear that the issue is resolved now. 
thank you for your time!
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.