I’m really surprised builders don’t include Menu Description in their options! I have zero idea how to make this happen and pull in the description:
Description should load like so:
I’m really surprised builders don’t include Menu Description in their options! I have zero idea how to make this happen and pull in the description:
Description should load like so:
@aces try adding this to your Bricks child-theme in the functions.php file.
add_filter('walker_nav_menu_start_el', 'add_description_to_menu_item', 10, 4);
function add_description_to_menu_item($item_output, $item, $depth, $args) {
if (!empty($item->description)) {
$item_output .= '<span class="menu-item-description">' . $item->description . '</span>';
}
return $item_output;
}
How did you get the description field in the menu settings? Is it some kind of plugin? In my WP there is no this field.