Thanks so much for your help. Great theme!
Okay, I compared the 2 sites and figured it out. In your snippet, you left off:
data-toggle="dropdown" data-target="#"
so I added that and it works!
full snippet should be:
add_filter('tc_menu_display', 'ccbra_menu_display');
function ccbra_menu_display($output) {
echo preg_replace('| class="dropdown-toggle" data-toggle="dropdown" data-target="#"(.+?)<b |', ' class="a-stripped" $1</a><a href="#" class="dropdown-toggle a-caret" data-toggle="dropdown" data-target="#"><b ', $output, -1);
}
Also, looks like your function code adds this line:
<a href="#" class="dropdown-toggle a-caret">
Is that correct?
Thanks for looking into this. I disabled it, but it’s still broken.