Triton LiteFree WordPress Theme

Triton is a all in one Free wordpress theme with awesome 3 fonts, 1 slider, 1 layout & easy to use theme option panel. The Theme also includes 3 built-in widgets and 5 useful shortcodes. The theme is SEO Friendly and has plenty of user-friendly options. The theme also comes with a Contact page Template which doesn’t require any setup.
  • 3 Fonts
  • 1 slider
  • 1 Layout
  • 2 Patterns.
  • 3 custom widgets.
  • 5 easy to use shortcodes.(Hard-coded in Post Editor)
  • 1 WordPress 3.0 Menu Position.
  • Mult-Level Dropdown Menu.
  • Social buttons to submit posts to Facebook, Twitter,
  • Stumble upon, Digg, Google Buzz!
  • 3 Awesome fonts.
  • Easy to use theme options.
  • Gravatar Support.
  • 3 custom page templates
  • Fancy lightbox
  • IE6 Browser Upgrade Alert!
  • Separation of Comments and Trackbacks
  • Threaded comments support.
  • Valid XHTML/CSS3.
  • Well-written documentation
  • One Click Install. No plugin required.

Compatibility:

  • Internet Explorer 7+
  • Firefox 3+
  • Safari 5
  • Opera 9+
  • Netscape 6+

version 1.1
—————–
+ Initial Release

1. The slider is not showing up on my frontpage.
A: Go to Settings> Reading and select “your latest posts” as your homepage.
2. How can i change the image header for this theme?
A: The header image/logo upload option is only available in the PRO version.

 

3. The Picture quality on the frontpage posts are not good.
A: Open up functions.php and add this:

add_filter(‘jpeg_quality’, function($arg){return 100;});
Before this:

//Post Thumbnail

 

4. I added 3 -4 slides but my slider is showing 10+ blank slides.
A: The sharing feature of Jetpack plugin is causing this. to fix this, add this to your functions.php:

if ( function_exists( ‘sharing_display’ ) ) remove_filter( ‘the_excerpt’, ‘sharing_display’, 19 );

Before this:

//Post Thumbnail

 

5. Is it possible to disable the fade effect on the images at front page ?

A: Add this to your stylesheet:

.lay1 > div .imgwrap{opacity:1!important;}

 

6. How do I hide the post date and comment counter from the front page posts?

A: Add this to the very bottom of your stylesheet:

.block_comm, .date_meta{display:none;}

 

7. How does one disable the ‘Leave a reply’ from all posts?

A: Open up single.php and page.php and remove this line:
<div><?php comments_template(”,true); ?></div>
8. how can i remove the number below the slider?
A: Add this to the very bottom of your stylesheet:

ol#controls{display:none;}
9. Any way to increase the number of slides beyond 10?
A: open up easyslider.php and replace this line:

$option[‘trt_num_sld’]

with:

’15’
10. How can i make the slider become image clickable?
A: Open up easyslider.php and replace this line:

<?php the_post_thumbnail(); ?>
with:
<a href=”<?php echo $trtdata; ?>”><?php the_post_thumbnail(); ?></a>

 

11. Why is the slider texts “Uppercased”? How do I make them normal?

A: Add this line to the very bottom of your stylesheet:

body #slider .slider-content h2 a, body #slider .slider-content a, body .slider-content p{text-transform:none!important;}

 

The theme is released under GNU General Public License, version 2.

Triton Lite Triton PRO
Free
For Life
$40
One time payment
Skins 1 Unlimited
(Ability to change the color of almost all the elements)
Fonts 3 12
Layouts 1 3
Slider 1 2
Background Color/image

No

YES

Background patterns 2 8
Shortcodes 5 20
Widgets 3 8
Widget Areas 3 3
Menu 2 Menu Positions/ 3 Level Drop-down Menu 2 Menu Positions/ 3 Level Drop-down Menu
Page Templates 3 3
Upload LOGO

NO

YES

Social Share buttons/Numbered Page Navigation

YES

YES

Related Posts

NO

YES

Google Analytics
Integration

NO

YES

Threaded comments/Separated Comments & Trackbacks

YES

YES

IE6/ IE7 Browser Upgrade Alert!

NO

YES

Fancy lightbox

YES

YES

Full Email support

NO

YES

Forum support

NO

YES

Upgrade to PRO


  • Hello,

    I really like this theme and I use it on my blog. I have three problems with it however. I hope that you can help me solve them. Is it possible to add search bar to main menu? Is it possible to add primary sidebar to the front page? And the last one, is it possible to post categories in the posts on the front page?

    Regards,
    Natalia


    • Since you are using the wordpress.com version of the theme, you will have to ask this on wordpress.com theme support forum.


  • Hey man,

    Great work! How did you display the social media icons on the top right of the lite version?


    • As you are using the wordpress.com version of the theme, can you ask this on wordpress.com theme forum?


  • Love your theme! I’m having trouble making the post titles on the home page display as a sans serif font.
    I’ve searched for all instances of font-family in style.css and made sure it reads: “font-family:Helvetica, Arial, sans-serif;” but it still seems to be displaying as a serif font. Do you know what the issue is?


    • the site is already displaying sans serif font.


  • Hi Towfiq

    Is there a way to make the menus at the top of my site centralize, rather than aligned left? – http://www.lazerhorse.org/

    Thanks


    • replied to your email Tim.


  • Hi,
    Understand that there are only 3 backgroup options but can i just change the background to white?
    Please help.
    Thanks.


    • Sorry I dont understand. can you elaborate?


    • How can I change the background to white?
      Thanks.


    • add this to the very bottom of your stylesheet:

      body{background:#fff!important;}


  • Hey! Triton lite is quiet a powerful theme with a lot of possibilities – because of this I don’t want to change again the theme after a hard time finding this one. I’ve used triton lite combined with the jet pack plugin but since a few weeks it doesn’t work anymore. So the plugin still works but features like tiled gallery and carousel doesn’t do anything. It is definitely a problem from triton but I can’t find out what has changed since then. Do you have any ideas? Best and thank you! Sarina


    • whats your site address?


  • How do you toggle the on hover fade so that the images are NOT faded by default but are when you mouse over them?


    • Open up triton.js from the “js” folder and replace this:

      	//Layout1 Animations
      	jQuery('.lay1 .post .imgwrap').css({'opacity':'0.7'});
      	jQuery('.lay1 .post ').hover(function(){
      		jQuery(this).find('.imgwrap').stop().animate({'opacity':'1'}, 300);
      	}, function(){
      		jQuery(this).find('.imgwrap').stop().animate({'opacity':'0.7'}, 300);
      	});
      

      with this:

      	//Layout1 Animations
      	jQuery('.lay1 .post .imgwrap').css({'opacity':'1'});
      	jQuery('.lay1 .post ').hover(function(){
      		jQuery(this).find('.imgwrap').stop().animate({'opacity':'0.7'}, 300);
      	}, function(){
      		jQuery(this).find('.imgwrap').stop().animate({'opacity':'1'}, 300);
      	});
      

Leave a Reply

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

+ Insert website address to ensure quick efficient support
+ To post your code, wrap your code with this <pre lang="LANGUAGE" line="1"></pre>