mi_coleccion_de_sellos
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu is not displayed correctlyPerfect solution, thanks Tom.
Regards
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu is not displayed correctlyThanks very much Tom, I’ve resolved the problem with the space, but the mega menu is displayed behind the main page, how I can I solve this problem?
Thanks
Forum: Plugins
In reply to: [Max Mega Menu] Display post count in menu itemsI have added this code to megamenu-pro.php :
function ggstyle_menu_item_count( $output, $item, $depth, $args ) {
// Check if the item is a Category or Custom Taxonomy
if( $item->type == 'taxonomy' ) {
$object = get_term($item->object_id, $item->object);
// Check count, if more than 0 display count
if($object->count > 0)
$output .= "<span class='menu-item-count'>".$object->count."</span>";
}
return $output;
}
add_action( 'megamenu_walker_nav_menu_start_el', 'ggstyle_menu_item_count', 10, 4 );It’s not working for me.
- This reply was modified 1 year, 5 months ago by mi_coleccion_de_sellos.
Forum: Plugins
In reply to: [Max Mega Menu] Display post count in menu itemsThanks for your answer, please can you tell me where can I found the php file for apply the changes you say about the code?
Regards
Viewing 4 replies - 1 through 4 (of 4 total)