Tagged: Sample Tags

Theme Features

Theme Features

Mobile Friendly Design

Just as all our recent themes, it is completely responsive and will look good on virtually every device. The best way to see it in action is to visit the demo site with your smartphone or to resize your browser window while on the demo site.

Hassle-free Updates

With it you wont have to worry about updating the theme, notifications about new updates will come directly to your WordPress dashboard. What’s more, you’ll be able to perform the update right there inside the dashboard. Be careful though…updating will undo all your customization so be sure to back everything up first.

More than just a Blog theme

On top of being an awesome magazine theme, it can also be used to start a fancy online webstore. To enable that it is compatible with the free WooCommerce plugin. Digital, physical, variable products with WooCommerce you can sell pretty much anything.

Unlimited Colors

Instead of providing a couple of preset skins, it will allow you to define colors for things like buttons, titles, header, footer and so on. All of this is accomplished using the WordPress Customizer meaning you get to see your site change in real-time.

New Shortcodes

it comes with an extensive selection of shortcodes created using Twitter Bootstrap. Along with standard shortcodes such as alert boxes or icon lists you can also add tabs, galleries, tooltips, popovers and more. A full list of shortcodes is available on the it demo site

Other features

 

  • 1-click install for getting started with the theme in literally seconds
  • Fully widgetized homepage lets you control and edit almost every homepage element, even the slider!
  • Full WordPress SEO by Yoast and bbPress plugin compatibility
  • Create massive header menus using the included Mega Menu widget

 


Something about us!

For those that want to see the theme back-end in action we have the test site. Just as the name suggests, the site allows you to take a test drive of a specific theme in order to ultimately decide whether it will be right for the project or not. Each test site is valid for at least ten days, allowing you to thoroughly test each aspect/feature of the theme.

Who we are ?

We are a group of designers and developers working round the clock to make a difference with WordPress. Providing high quality, completely customizable Premium WordPress themes is what Templatic is all about. Our mission is to take WordPress to the next level with unparalleled e-commerce, directory and app themes.

What we do ?

We provide all types of themes depending on the needs and demands of our customers. From a simple blog to a e-Commerce website; we have it all! Many of our themes feature functionality not available anywhere else. Not only that, many of our themes paved the way for entire niches. Perhaps the best examples of that are GeoPlaces and iPhone App. If you have an idea for a cool WordPress theme, let us know! To view our selection of WordPress themes please visit our Theme Gallery.

[templatic_msg_box type=’success’] Resize your browser window or better yet open this demo site in your mobile device to see the responsive design in action ![/templatic_msg_box]

Our Approach

Approach to Theme Design is another aspect which sets Templatic apart from many other companies. Each theme released has been created with the potential visitor in mind. Business sites tend to have a more professional look while modern directories often display vivid colors with lots of dynamic content. All of this is reflected in our theme’s designs.

Ever Growing Community

Templatic community forum is a truly unique support system. It’s a place where members can share their experiences, communicate with other members and request professional support from Templatic agents. The system enables those that require assistance to get it quickly and efficiently while still providing lots of content (and discussions) for those that want to be active inside the community. As a reward to those that go out of their way to help others we give out free themes to active members each month!
Templatic community forum is a truly unique support system. It’s a place where members can share their experiences, communicate with other members and request professional support from Templatic agents. The system enables those that require assistance to get it quickly and efficiently while still providing lots of content (and discussions) for those that want to be active inside the community. As a reward to those that go out of their way to help others we give out free themes to active members each month!
Templatic community forum is a truly unique support system. It’s a place where members can share their experiences, communicate with other members and request professional support from Templatic agents. The system enables those that require assistance to get it quickly and efficiently while still providing lots of content (and discussions) for those that want to be active inside the community. As a reward to those that go out of their way to help others we give out free themes to active members each month!


Works with the Powerful Supreme Framework

Supreme is a child theme which works on top of our Supreme parent theme which also powers our other recent themes

With 3.0 release, WordPress has introduced a new user interface to help manage navigation menus, which simply means you´ll get a new page with some tools on it to help you add, delete, and arrange links.

To utilize this feature, you must first activate it. Without activation, your menu management page will display nothing, but an error.
If it´s currently inactive, in your WordPress administration panel, go to Appearance > Menus to see the error.

How to Activate WordPress 3.0 Menu Management

Add the following code to the functions.php file of your theme.
[php]if (function_exists(“add_theme_support”)) {
add_theme_support(“menus”);
}
[/php]
While add_theme_support(“menus”); is enough to activate the Menu Management page, the additional code around this necessary line makes sure if later or earlier versions of WordPress doesn”t have this feature then it will simply do nothing and cause no error.

What the code above means:

The code above simply means if the Add Theme Support function exists, use that function to add Menus feature. If it doesn´t exist, do nothing.

Step by Step

  1. Open theme folder and find functions.php.
  2. Open functions.php using Notepad or text editor of your choice.
  3. Copy and paste the code above.
  4. File > Save functions.php

Where to place the code

If the functions.php file of your theme is messy or you don´t really know where to place the code, go to the end of functions.php and paste the code before:
[php]?>[/php]
A question mark immediately next to a right arrow marks the end of a set of codes. The last combination of question mark and right arrow in the file marks the end of the file. Normally, if you add any code right before the file ends, you´d have no problem.

This set of codes is only slightly different from what you were first given. The additional
[php]<?php[/php]
and
[php]?>[/php]
at the beginning and ending of this set of codes means start PHP and end PHP.

You may close functions.php. For the rest of this tutorial, you don´t need it. Now you´ve activated the Menu Management feature or user interface, here´s what it looks like:

Using Menu Management User Interface

If you use wp_nav_menu() in theme template files to display the menu, by default, it will list only links with a Page attached to it. But, what if you wanted to add custom external links without creating a new page just to point to it? For example, adding a Twitter link to your site´s main menu. Here´s how.

First, create a custom menu because WordPress will not allow you to add, delete, or re-arrange links without at least having one custom menu. Name your menu then save it. For this tutorial, my first custom menu is named, ´first.´

After creating the custom menu, you have several options on Menu Management page to add links. For example, you can simply check the boxes next to the Pages and Categories you want to add then click the Add to Menu button. You can also add custom links and here´s what it looks like:
Don´t forget to click the Save Menu button after adding new links.

How to Display Custom Menu

Like I mentioned before, wp_nav_menu() by default displays your list of links based on what Pages you have. It doesn´t display custom menu links. To display the custom menu wherever you want it to show up, copy and paste the following:

Replace ´first´ with the name of your menu.

What the code above means:

  • Start PHP
  • Use wp_nav_menu() to display menu
  • The custom menu I want to use is ´first.´
  • End PHP

In whichever file you´re pasting it in, save the file. Upload this file to the theme folder on your server if you´re not directly editing it through the WordPress administration panel.

I created a blank theme just for this tutorial. Here´s what it looks like for me after putting the code above in the index.php file of my blank theme.

If you right click on the page currently displaying your menu and go to View Source, you get to see what this menu looks like under the hood. Here´s what it looks like for me:
[php]<div class="menu-first-container">
<ul id="menu-first" class="menu">
<li id="menu-item-4" class="menu-item menu-item-type-custom"><a href="http://son">son</a>
<ul class="sub-menu">
<li id="menu-item-6" class="menu-item menu-item-type-custom"><a href="http://grandchild">grand child</a></li>
</ul>
</li>
<li id="menu-item-5" class="menu-item menu-item-type-custom"><a href="http://daughter">daughter</a></li>
</ul>
</div>
[/php]
Wherever you see ´first´ in the set of codes above, you know it´s there only because I named the custom menu ´first.´

Display Multiple Custom Menus

To do that, you have to first create the second menu. Here´s my second menu, which is conveniently named, ´second.´ And, I´ve added two links under the second menu.
To display the second menu, duplicate code for the first menu and change menu=first to menu=second. If you named your second menu, ´submenu,´ then change menu=first to menu=submenu. Here´s the entire code:

Differentiating Custom Menus and Customizing Them

There are several ways to differentiate and customize custom menus. The most obvious one is using different names for first and second menus. The less obvious ways are customizing container_class, container_id, and menu_class.
Under the hood, by adding menu_class=my-main-menu using the ampersand sign (&), my menu list changes from:
[php]<ul id="menu-first" class="menu">[/php]
to:
[php]<ul id="menu-first" class="my-main-menu">[/php]
As you can see, to add another customizable option to the menu, you simply use the ampersand sign, the option you´re customizing, and the value of that option, which can be any string of texts of your choosing. After you´ve added the code, save the file, refresh the web page, and check under the hood by choosing View Source to see the changes made.

For a list of options you can customize or assign values to, go to wp_nav_menu at the WordPress Codex.


10 reasons why you would love this theme

1. Helps you create a beautiful Video site

This theme will help you create a beautiful video portal where you can embed videos from different video sharing websites or you can also upload your own video using the WordPress media uploader. A new custom post type is created for Videos so that will help you separate your blog posts from videos.

2. Embed Different video types

We have provided oEmbed support which will help you embed videos from different websites. Here‘s a list of websites which will work with oEmbed. Let‘s see some examples:

YouTube

Vimeo

DailyMotion

Blip.tv

WordPress.tv

Metacafe

Spotify

3. Beautiful blog

Along with the video portal you can create a beautiful blog too, yes like always we did not forget the blog! Every element like different headings, lists(ordered, unordered), blockquote, different HTML tags, post formats, image alignments, text alignments are designed with special care to make your blog look beautiful. You name an element and we have designed it for you.

4. Different sidebars for blog/video

We have given different custom sidebars which will help you showcase relevant content in the sidebar on all pages. You can have different sidebars on the following pages: home page, blog listing page, blog detail page, video listing page, video detail page, and all other WordPress pages. We have given different custom sidebars which will help you showcase relevant content in the sidebar on all pages. You can have different sidebars on the following pages: home page, blog listing page, blog detail page, video listing page, video detail page, and all other WordPress pages.

5. Customize the theme without touching code – color customizer, body background image, header background image

You read it correct, with the inbuilt color customizer you can literally change colors of all the elements of your website. 5 color options are given which will help you create unlimited color schemes of this theme. You read it correct, with the inbuilt color customizer you can literally change colors of all the elements of your website. 5 color options are given which will help you create unlimited color schemes of this theme. Along with the colors you can also have a beautiful body background image and a header image for your website and remember all of this can be done from theme options without touching a single line of code.

Along with the colors you can also have a beautiful body background image and a header image for your website and remember all of this can be done from theme options without touching a single line of code.

6. Video Slider

With the help of an awesome looking slider you can show videos in slider on your home page, there is an option to select the number of videos you can display in the slider. You can also select specific categories from which you want to display videos in the slider.

7. Different widgets for showing posts/videos

We have created a few custom widgets which will help you showcase posts and videos in different way. Here‘s a list of the widgets:

  1. T → All Categories First Post: Helps you display all your video categories in home page content area along with the thumb of latest video in that category
  2. T → Latest Posts/Videos: Helps you display latest posts/videos along with their thumbnail in list/grid view on home page. There are options in the widget to limit the number of posts and also from which categories the posts/videos should come
  3. T → Popular Posts: Can be used to display popular posts/videos either by number of comments or by total page views. Can be used in both sidebar and home page content area.
  4. T → Related, Popular, Latest Posts/Videos: This widget will display Related, popular and latest posts in the sidebar in different tabs. Ideal to have in the sidebar of your blog.

8. Custom.css editor in backend

You think you are good with CSS and want to make some customization in the theme? We have given an option in the backend where you can write your custom CSS. You must be wondering how this is different from a custom.css file? Well the problem with the custom.css file is theme updates. While updating the theme you need to make sure that you backup your custom.css before updating the theme and put it back again after updating. With custom.css editor in backend we will save your custom CSS in database so you will not have to worry about the theme updates. You can update your theme without backing up the custom.css file and all your customization will be intact.

9. Localization and WPML ready

Like all of our recent themes, this theme is also localization ready and also WPML compatible which will allow you to create a website in multiple languages. Like all of our recent themes, this theme is also localization ready and also WPML compatible which will allow you to create a website in multiple languages. Like all of our recent themes, this theme is also localization ready and also WPML compatible which will allow you to create a website in multiple languages.

10. Automatic updates and unlimited support for a year

The Automatic updates feature will allow you to update your theme directly from your WordPress backend without having a hard time playing with an FTP program to upload the updated files. By purchasing the theme you also get unlimited support for a year from our support forums and helpdesk. The Automatic updates feature will allow you to update your theme directly from your WordPress backend without having a hard time playing with an FTP program to upload the updated files. By purchasing the theme you also get unlimited support for a year from our support forums and helpdesk.


Sample text only post

Praesent posuere libero eu justo tristique, vitae ultricies justo volutpat. Integer convallis convallis interdum. Ut luctus justo elit, sit amet sodales purus vulputate non.

Nullam lorem eros, posuere nec sodales at, aliquet gravida dui. Aenean id tellus in libero porta ultricies. Donec viverra interdum bibendum. Sed varius nunc tortor, tempus accumsan massa aliquam sed. Quisque a turpis ut dolor porta auctor a sed risus. Quisque turpis arcu, congue in tincidunt quis, feugiat a erat. Vivamus tincidunt semper ultricies. Integer sit amet facilisis quam. Sed vitae nibh odio. Sed nec neque id nunc ornare rhoncus. Donec congue accumsan justo, vitae mollis ipsum pharetra eu.

Donec lacus nunc, viverra nec, blandit vel, egestas et, augue. Vestibulum tincidunt malesuada tellus. Ut ultrices ultrices enim.

Praesent posuere libero eu justo tristique, vitae ultricies justo volutpat. Sed pellentesque neque eu neque adipiscing condimentum. In hac habitasse platea dictumst. Aliquam fermentum mollis orci aliquam dictum. Proin auctor quis enim ut tempor. Integer convallis convallis interdum. Quisque eget libero ac dolor pharetra vestibulum. Nulla posuere orci at justo vehicula porta. (more…)