University, free WordPress Theme

December 8, 2014

University is a responsive WordPress theme that can be used for different types of institutions and organizations. In the front page there is a slider where you can feature as many pages or posts as you want. Below that another section with featured pages and posts.

  • Compatible with the latest WordPress version.
  • 100% responsive design.
  • Front page slideshow.
  • Integrated social media icon fonts, 11 available.
  • Custom menu system, multi-level dropdown
  • Featured post images.
  • One widget ready location.
  • Integrated blog pagination.
  • Threaded comments.
  • Translation ready, .pot file provided.
  • Compatible with all major browsers.

76 comments

  1. julia says:

    Hello,

    Love the theme. I must be blind but I can not find where to add the images for the front page slider.

    Thanks

  2. Edy says:

    Inside the theme there is a readme.txt file where you have more details how to configure the theme.

    Edy

  3. Jason says:

    The “University” theme homepage’s simple style, suits my needs well without the comment section, however I do not wish to use the right sidebar on the pages either. I would like to remove the right sidebar to eliminate the empty space. Is there an easy way to remove the “right sidebar” on the pages of the “University Theme” so that the pages content will be more centered though still left justified? Thanks

    • Edy says:

      Hi Jason,

      You can select the full width page template for each page you create. You can do so in the templates dropdown in ‘Page Attributes’, located in the right colum when you edit a page.

      You can also disable comments for each page. You need to enable the ‘Discussion’ box in the ‘Screen Options’, top right corner when you edit a page, and disable comments there.

      Edy

  4. Jason says:

    That is perfect! thank you for bringing those controls to my attention. I greatly appreciate your help! Viva Themes rocks!

  5. mudiya says:

    I am working on a site.As you can see when you put your mouse over ABOUT US menu bar.Its option > WHO ARE WE is overlapping with the LEVEL 2 menu bar’s item GALLERY.
    i tried everything.
    How to fix it ?
    HELP NEEDED
    I am using University : Viva theme.

    • Edy says:

      I see it is working fine now. I would suggest however to keep the menu in one line, looks nicer. If you need all the first level menu items, you can decrease the font size of the menu.

      In style.css file look for

      .sf-menu a {
      	padding: 7px 15px;
      	text-decoration: none;
      	zoom: 1; /* IE7 */
      	font-size: 16px;
      	font-family: 'Arvo', arial, helvetica, sans-serif;
      	text-transform: uppercase;
      	color: #000;
      	font-weight: 400;
      }
      

      just change the font-size.

      Edy

  6. Jesse says:

    can we have a static image in the slider?

    also, if we put multiple images into the slider how can we have more basic transitions

    • Edy says:

      You can have a single image in the slider I guess.

      To change the transition effect, in ‘camera.js’ file, located in the ‘js’ folder of the theme, near the top you have this line

      fx: 'random',
      

      below that line you have a list of available effects, you can replace ‘random’ with any of those.

      Edy

  7. mudiya says:

    How can i add caption of my own on the main slider images?
    When featured with the page.It shows its title as the caption.I tried to solve this issue by reading your readme.txt file.But of no use.
    Help.

    • Edy says:

      You can create a custom field with name ‘slidetitle’ in any each page you have included in the slider, and in the value area enter the caption you want.

      You can enable the custom fields in the ‘Screen Options’, top right corner when you edit a page or post.

      Edy

  8. Jeff says:

    I must be more blind than Julia because I can’t find the realm.tt file anywhere. Adding images to the slider is what I’m looking for.

  9. mudiya says:

    Thanks alot 🙂
    caption issue resolved 🙂
    Can you p[laese guide me hoe to make any registration form with my own required fields in this theme?

  10. Jeff says:

    Just to make sure I understand, all sliders are connected to a page/post. Is there a way to add a slider with no link at all to a page/post? Just a picture?

    Also, maybe this is immaterial (I don’t know much about things like this) but I noticed a sizing conflict in the readme:

    UNIVERSITY THEME

    CONFIGURING THE FRONT PAGE SLIDER
    When you edit a post or page, in the top of the right column you will see…The slider images will be automatically resized but suggested size is 950x460px.

    FEATURED IMAGES SIZES
    Slider images – 960x450px

    • Edy says:

      You can create a custom field named ‘slidelink’ and in the value area enter the home page url or just a ‘#’ sign. That way the slide will not link to the page/post.
      You can enable the custom fields section in the ‘Screen Options’ top right corner when you edit a page or post.

      The images size is probably a typo from my side, size is 950x460px.

      Edy

  11. mudiya says:

    I have an issue.
    When i put my cursor over drop down menu bar.
    I want its color to be changed from white to blue.
    What should be done to achieve this?
    http://www.asme-must.com

  12. mudiya says:

    I wanted to ask that how can i change the size of inner box of my site?the wrapper thing that contains my site content.how can i increase its size?

  13. Max says:

    Is there a way to disable the featured post animation and image rotations?

    Awesome work btw.

    • Edy says:

      Hi,

      Do you mean remove the image slideshow? You can remove this code in ‘header.php’ file

      <?php
         				$args = array(
         							'posts_per_page' =>-1,
      							'post_type' => 'any',
      	  						'post__not_in' => get_option( 'sticky_posts' ),
            						'meta_query' => array(
               					array(
                  					'key' => '_university-slider-checkbox',
                  					'value' => 'yes'
               						)
            							)
         							);
        				$slider_posts = new WP_Query($args);
      			?>
      <div id="slidecontainer">
        <div id="camera_wrap_1">
          <?php if($slider_posts->have_posts()) : ?>
          <?php while($slider_posts->have_posts()) : $slider_posts->the_post() ?>
          <div data-thumb="<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'slidethumb' ); ?><?php echo $image[0]; ?>" data-src="<?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'slideimage' ); ?><?php echo $image[0]; ?>" data-link="<?php if(get_post_meta($post->ID, 'slidelink', true)): ?>
      									<?php echo get_post_meta($post->ID, 'slidelink', true); ?>
              							<?php else : ?>
      									<?php the_permalink(); ?>
                                          <?php endif; ?>">
            <div>
              <?php if(get_post_meta($post->ID, 'slidetitle', true)): ?>
              <?php echo get_post_meta($post->ID, 'slidetitle', true); ?>
              <?php else : ?>
              <?php the_title(); ?>
              <?php endif; ?>
            </div>
          </div>
          <?php endwhile ?>
          <?php wp_reset_postdata(); ?>
          <?php endif ?>
        </div>
      </div>

      also, to remove unnecessary scripts in ‘functions.php’ file remove this part

      if(is_front_page()){
      wp_enqueue_script( 'university-slidemobile-script', get_template_directory_uri() . '/js/jquery.mobile.customized.min.js', array( 'jquery' ), '', true );
      wp_enqueue_script( 'university-jquery-easing', get_template_directory_uri() . '/js/jquery.easing.1.3.js', array( 'jquery' ), '', true );
      wp_enqueue_script( 'university-camera-script', get_template_directory_uri() . '/js/camera.js', array( 'jquery' ), '', true );
      }

      Edy

    • Max says:

      Edy,

      I believe what gave me is to remove the image slide show completely.

      What I wanted is to just disable the animation, circle countdown, left/right arrows on the image, and the title of the featured post when the mouse cursor hovers over it.

      Thanks again for your prompt response and help.

    • Edy says:

      If you just need a single image, you can replace the code I gave you in the ‘header.php’ with the code for a single image.

      <img src="your image url goes here" />

      Edy

  14. Nik says:

    When I mark an article or a page as “featured post”, those marked as “slider post” are removed from slider… :-/

  15. Mike says:

    I have created two posts to display in my featured posts slider but they aren’t showing up. I created a post that includes my home page text that i want to display at the top of the home page above the featured pages listed below? I have the home page set to static page as it suggests and i have selected posts for slider on each post. Any suggestions?

    • Edy says:

      I see you have featured some posts in the slider. You need to add a featured image to each of the posts or pages you have featured in the slider.

      Please check also the ‘readme.txt’ file located inside the theme.

      Edy

  16. Nik says:

    Can I choose/control the order which displays the home slider posts, if I’d want show a certain image as first, for example?

  17. Kenny says:

    How can I remove the footer text:
    © 2015 University . Powered by WordPress. Theme by Viva Themes. and change it to my own text. Thank you.

  18. Susan says:

    I chose the University theme for its simplicity. However, I’d like to remove the slider totally from the first page. Is there an easy way to do so without editing code? Thanks, Susan

  19. Susan says:

    Thanks Edy, I installed the plugin. I am not sure how to add the css code. Do I go to edit and just add the above? Thanks, Susan

  20. Melvin says:

    Hey there! Great easy to use theme. Unfortunately the menu in the mobile website doesn’t show up, we use a nested menu structure which seems to be the cause. Is this a feature or a bug?

    • Edy says:

      Hi Melvin,

      I am not sure what the problem could be. Maybe a plugin you have installed or some code change you have done. In our demo it is working fine.

      Edy

      • Dwayne says:

        I am having the same problem with this theme. At present the full menu is showing on the desktop version. No menu is showing on the table when it is held in portrait view but it showing in landscape view. A menu is showing on the cellphone but it does not show all the menu items.

        I have tested and I realize the problem is the sub menu. I took some of the menu items from the sub menu and all showed on the cellphone.

      • Dwayne says:

        I am having the same problem with this theme. At present the full menu is showing on the desktop version. No menu is showing on the table when it is held in portrait view but it showing in landscape view. A menu is showing on the cellphone but it does not show all the menu items.

        I have tested and I realize the problem is the sub menu. I took some of the menu items from the sub menu and all showed on the cellphone.

        I am using WordPress 4.5.1

  21. jesus says:

    Greetings,

    This university theme work with WordPress 4.2.2? Because I extract into the subdirectory themes and the admin area of wordpress not found the theme and I don’t know what to do.


    Jesús

    • Edy says:

      Hi Jesus,

      The theme works fine with wp 4.2.2. Maybe you copied it in the wrong place. Try installing it directly from the backend.

      Edy

  22. Rick T says:

    Hi, great theme. I was wondering if I can have the post image above the feature post thumbnails on my home page. Can I do this?

    • Edy says:

      Hi Rick,

      Do you mean the slideshow? Please check the ‘readme.txt’ file located inside the theme, there are details there.

      Edy

  23. Rick T says:

    I took the slideshow out. I would like to have a feature post image above the three small feature posts section. Or, if I can turn the slideshow into a single feature image? thanks.

  24. Rick T says:

    How about instead of a single image that I have to replace inside the code, can I have a recent post image? Thanks.

  25. Manas Mitra says:

    Hi,
    It’s a nice theme to work with. Color selections are also looks great. Is it possible to show a specific category posts in the home page, below the three featured posts? Displaying all the posts those are already displayed in slider and featured area makes them redundant. Is it possible to achieve? Thanks once again to create such a beautiful theme.

    • Edy says:

      Hi Manas,

      That can be achieved, but the easiest thing to do is that you feature pages in the slider and the featured posts, I think you can do that.

      Thanks,
      Edy

      • Manas Mitra says:

        Hi Edy,

        Finally what I have done that I removed the lower post section with the following CSS:

        .home #contentwrapper { display: none; }

        It served my purpose. Thanks for your support.

  26. I am using the university theme and have been happy so far. I was trying at one point to add the option of adding comments on specific (not all) pages. The folks at ehost were more than willing to “help” me try to accomplish this but it never happened. As a result I now have text from my Classmates page appearing on my Home page and have no idea how it got there. Of course now ehost claims this is “outside their scope” and they can’t help me. I have told them several times I don’t understand how they were more than willing to access and play around with my website before and now they won’t touch it. Anyway I am trying to get rid this section. Be warned this process of website building is new to me and I have very little knowledge of coding. Any help would be greatly appreciated.

    • Edy says:

      Hi David,

      University theme has comments already enabled in pages. You can enable/disable each page comments section by going to Pages in the Dashboad, Quick Edit a page and there’s a checkbox that allows to Enable comments.

      To have the latest posts display in the Front Page, or another static page, go to ‘Settings-Reading’.

      Thanks,
      Edy

  27. Katie says:

    Why are the slider images not responsive on mobile? They get cropped instead of resized

    • Edy says:

      Hi Katie,

      They are responsive not cropped. Please check also our demo.

      Thanks,
      Edy

      • Katie says:

        Thank you for your quick response! But I am looking at the theme on mobile now, and the slider images are being cropped not resized.

        • Edy says:

          Just checked again to make sure and they are resized, not cropped. You can resize the browser in the demo to check it out.

          Thanks,
          Edy

  28. The widgets are no longer to the right. They have.dropped to the bottom of.the page

  29. Bobbi says:

    The “Read More” buttons on the featured blog posts on my Static from page are not working. They had broken on the entire site, but the most recent update fixed them. I just noticed that they are have not been fixed on the home page.

  30. Bobbi says:

    Awesome, this didn’t quite work, but it set me on the right path. I was able to figure it out & make things work!

    Thanks!

  31. Dahn says:

    I’m having an issue. I’m getting a Read More in my blog posts. I can’t see the whole thing and I can’t figure out how to fix it. Post example: http://dahnandmike.com/exciting-announcement/

  32. lala says:

    hi, how can i change the height of the slider . Great theme by the way.

    • Edy says:

      Hi,

      You need to change the height of the featured image that appears in the slider in ‘functions.php’ file here

      add_image_size('university-slideimage', 950, 460, true);

      Thanks,
      Edy

  33. jose says:

    I want all the posts of x category to be published automatically in featured posts section, example all posts of category 001 are added automatically in featured posts section!

  34. Tom says:

    Hi,

    How do I change the font color of the main text?

    thanks,
    Tom

    • Tom says:

      Never mind – I figured it out. If anyone else is interested:

      Customize –> Additional CSS
      Enter this code:

      body {
      color: red;
      }

  35. Emma says:

    Is this theme compatible with WordPress 5?

  36. kenny says:

    where can i download the theme data?

Leave a Reply

Your email address will not be published. Required fields are marked *