Title: Sumo Theme
Last modified: August 24, 2016

---

# Sumo Theme

 *  [remap](https://wordpress.org/support/users/remap/)
 * (@remap)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/sumo-theme/)
 * I am using the Sumo theme and my links aren’t clickable on the front page. [http://fotografie.whenlovefalls.com/](http://fotografie.whenlovefalls.com/)
 * The problem is there are only 3 php files and none uses the code the_excerpt()
 * This is the code from themefunctions
 *     ```
       function sumo_theme_setup() {
   
       	add_theme_support( 'omega-footer-widgets', 3 );
   
       	add_action ('omega_header', 'sumo_header_right');
   
       	add_action( 'widgets_init', 'sumo_widgets_init', 15 );
   
       	/* Register custom menus. */
       	add_action( 'init', 'sumo_register_menu' );
   
       	remove_theme_support( 'theme-layouts' );
   
       	add_action( 'omega_footer', 'sumo_footer_links' );
   
       	add_action( 'wp_enqueue_scripts', 'sumo_scripts_styles' );
   
       }
   
       add_action( 'after_setup_theme', 'sumo_theme_setup', 11  );
   
       /**
        * Enqueque Google Font
        *
        * @since 1.0.1
        */
   
       function sumo_scripts_styles() {
       	$query_args = array(
       	 'family' => 'Lato:400'
       	);
        	wp_enqueue_style( 'google-fonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null  );
       }
   
       /**
        * Sets a common class, <code>.omega-nav-menu</code>, for the custom menu widget if used in the header right sidebar.
        *
        * @since 1.0.0
        *
        * @param  array $args Header menu args.
        *
        * @return array $args Modified header menu args.
        */
       function sumo_menu_args( $args ) {
   
       	$args['container']   = 'div';
       	$args['menu_class'] .= ' omega-nav-menu';
   
       	return $args;
   
       }
   
       function sumo_header_right() {
   
       	add_filter( 'wp_nav_menu_args', 'sumo_menu_args' );
       	if ( is_active_sidebar( 'header-right' ) ) : ?>	
   
       	<aside class="header-right widget-area sidebar">
   
       		<?php dynamic_sidebar( 'header-right' ); ?>
   
         	</aside><!-- .sidebar -->
   
       	<?php endif;
       	remove_filter( 'wp_nav_menu_args', 'sumo_menu_args' );
       }
   
       /**
        * Register widgetized area and update sidebar with default widgets
        */
       function sumo_widgets_init() {
       	register_sidebar( array(
       		'name'          => __( 'Header Right', 'sumo' ),
       		'id'            => 'header-right',
       		'before_widget' => '<section id="%1$s" class="widget %2$s"><div class="widget-wrap">',
       		'after_widget'  => '</div></section>',
       		'before_title'  => '<h3 class="widget-title">',
       		'after_title'   => '</h3>',
       	) );
       }
   
       function sumo_register_menu() {
       	register_nav_menu( 'social',   _x( 'Social', 'nav menu location', 'sumo' ) );
       }
   
       function sumo_footer_links() {
   
       	if ( has_nav_menu( 'social' ) ) {
   
       		wp_nav_menu(
       			array(
       				'theme_location'  => 'social',
       				'container'       => 'div',
       				'container_id'    => 'menu-social',
       				'container_class' => 'menu',
       				'menu_id'         => 'menu-social-items',
       				'menu_class'      => 'menu-items',
       				'depth'           => 1,
       				'link_before'     => '<span class="screen-reader-text">',
       				'link_after'      => '</span>',
       				'fallback_cb'     => '',
       			)
       		);
       	}
       }
       ```
   

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [remap](https://wordpress.org/support/users/remap/)
 * (@remap)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/sumo-theme/#post-5994936)
 * Nobody can help me?
 *  [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * (@wpyogi)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/sumo-theme/#post-5994937)
 * Could you post in the forum for that theme – more likely the developer will help
   you:
 * [https://wordpress.org/support/theme/sumo#postform](https://wordpress.org/support/theme/sumo#postform)
 * Or try this plugin:
 * [https://wordpress.org/plugins/advanced-excerpt/](https://wordpress.org/plugins/advanced-excerpt/)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sumo Theme’ is closed to new replies.

## Tags

 * [links](https://wordpress.org/support/topic-tag/links/)

 * 2 replies
 * 2 participants
 * Last reply from: [WPyogi](https://wordpress.org/support/users/wpyogi/)
 * Last activity: [11 years, 1 month ago](https://wordpress.org/support/topic/sumo-theme/#post-5994937)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
