Add and banner ad just below the header

Hi…
My Xtheme is Renew and I am trying to add a banner below the header how can I do that … please simple way to follow no complicated steps…

Hi @zatarim,

The fastest way is using the Global Block feature:

Please setup a child theme first:

After that add this custom code under functions.php file locates in your child theme:

function x_print_global_block(){
	do_shortcode('[cs_gb id=381]');
}
add_action( 'x_after_view_global__slider-below', 'x_print_global_block' );

The [cs_gb id=381] shortcode is your global block shortcode.

Hope it helps :slight_smile:

Thanks… Which global block i should add?
Could you explain the first step more here…

Zatari

Hey Zatari,

If the ad you are trying have Javascript code in it, you can use the Raw Content element in the Global Block.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.