Hi @core365,
Thanks for reaching out.
If you are using the Pro then you can add the Global Block to a specific footer and assign it to the specific page. But if you are using the X, you need to add the following code to check the specific page with your existing code.
global $post;
$post_id=$post->ID;
if($post_id==1234)
{
//your code here.
}
The complete code will look like the following, please replace the post_id
value with your specific page id. Please find the article to find the post id: https://theme.co/docs/how-to-locate-post-ids
add_action( 'x_before_view_footer_base', 'x_print_footer_global_block' );
function x_print_footer_global_block()
{
global $post;
$post_id=$post->ID;
if($post_id==1234)
{
echo do_shortcode( '[cs_gb id=1573]' );
}
}
Please remember that the above code will work if copied as it is and doesn’t conflict with any existing style.
Please note that the code provided serves only as a guide to help you get started custom coding on your own if there’s no option offered in our theme or the products we bundle.
We really do not provide support for custom codes which means we can’t fix it in case it conflicts with something on your site nor will we enhance it.
Thanks