Hiya
Yes here’s the code in case needed.
add_action('wp_footer', 'ava_after_main_title_mod');
function ava_after_main_title_mod() {
if ( in_category('1') || in_category('2') || in_category('3') || in_category('4') || in_category('5') || in_category('6') || in_category('beauty')
|| has_term( 'category-1', 'event_cat' ) || has_term( 'category-2', 'event_cat' ) || has_term( 'category-3', 'event_cat' ) || has_term( 'category-4', 'event_cat' ) || has_term( 'category-5', 'event_cat' ) || has_term( 'category-6', 'event_cat' ) || has_term( 'category-7', 'event_cat' ) ){
echo "
<div id='custom-fullwidth'>";
echo do_shortcode("[shortcode]
[/av_submenu]");
echo "</div>
";
}
}
Richard