At the top of the shop page I want to place a global block. See the code below:
add_action( "woocommerce_before_main_content", "add_global_shortcode_shop_head" ); function add_global_shortcode_shop_head() { if(x_is_shop()) { echo do_shortcode( '[cs_gb id=1712]' ); } }
Unfortunately this does not work. Can you help me further?