You do not have permission to view this forum.
Triton PROPremium WordPress Theme
- Unlimited Skins- Ability to change the color of any elements
- 12 Awesome fonts.
- 2 sliders
- 3 Layouts
- 8 Patterns.
- 8 custom widgets:
- 1-Flickr Photos
- 2-Popular Posts
- 3-Featured Posts
- 4-Random Posts
- 5-Twitter Feeds
- 6-160×600 Skyscrapper Ad
- 7-250 x 250 AD
- 8-125 x125 ADs
- 20 easy to use shortcodes.(Hard-coded in Post Editor)
- WordPress 3.0 Menus.
- Mult-Level Dropdown Menu.
- Social buttons to submit posts to Facebook, Twitter,
- Stumble upon, Digg, Google Buzz!
- Easy to use theme options.
- Option for image logo
- Custom Background Color/ Image
- Related Posts
- Gravatar Support.
- 3 custom page template
- Fancy lightbox
- Easy Google Analytics Integration
- 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. 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
3. 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
4. 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;}
5. 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;}
6. How does one disable the ‘Leave a reply’ from all posts?
A: Open up single.php and page.php and remove this line:
7. how can i remove the number below the slider?
A: Add this to the very bottom of your stylesheet:
ol#controls{display:none;}
8. 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’
9. How can i make the slider become image clickable?
A: Open up easyslider.php and replace this line:
with:
10. 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.
thank you for your reply.
As i do not know almost anything about using functions.php file, is there anyway you can help me with this.
Just go to Appearance> Editor and select “functions,php” from right and make the edit I mentioned above.
Thanks! I’ve managed to find it!
I have few more questions;
1)how can i change the color of “Read More→” text and surroundings below the post, on top page.
2)how can i change the color of the space under the slider image(next to the slide number).
1. Add this to your stylesheet:
body .lay1 .read_mor{background:#FFFFFF; color:#111111; }
2. Add this to your stylesheet:
body #slides{background: #222222;}
Thanks! no.2 worked but as for
1. Add this to your stylesheet:
body .lay1 .read_mor{background:#FFFFFF; color:#111111; }
thought it was white before,when i put my mouse over the readmore area, the area gets grey and stays grey even though i move away my mouse.
You will have to open up triton.js file from the “js” folder of the theme and remove these 2 lines:
jQuery(this).find(‘.read_mor’).css({‘background’:’#ccc’}, 300);
and
jQuery(this).find(‘.read_mor’).css({‘background’:’#dfdfdf’}, 300);
I am using Triton Lite, and I saw this question above:
“Hello, how can I make the image in the slider a clickable link, the same as the text in the slider?”
Is there any way to make a slider image a clickable link in Triton Lite? Or does your answer only apply to the Triton Pro theme? I have tried it in Triton Lite but it keeps coming back as a Syntax Error every time I view the page.
Go to Appearance> Editor and select “easyslider.php” and find this line:
and replace this with:
Thanks for the quick reply!
When I made the change, this is what my browser came back with:
“Parse error: syntax error, unexpected ‘?’ in /home/content/28/8556428/html/wp-content/themes/triton-lite/easyslider.php on line 12”
oh Shoot! I forgot you are using the PRO version in that case use this line:
Th code is not displayed properly. Try the code you find in this page:
http://codepad.org/E7Mu8Ds7
Actually I am using the Lite version.
When I put in the PRO version line this is the result that my browser is showing:
“Parse error: syntax error, unexpected ‘=’ in /home/content/28/8556428/html/wp-content/themes/triton-lite/easyslider.php on line 12”
It worked!! With the code on the link you provided. Thank you very much for all of your help – very much appreciated!
Wait a second, can you place the LITE version code on Codepad? Using the code above it makes a link for each of the slider images, but they all just link to the homepage. I was hoping that I could make each slide link to a separate link.
Can you copy the whole code of your easyslider.php file and send it to me through this page, I will reply to your email promptly
http://www.towfiqi.com/contact
Hi, i had asked you a few days ago how to change the slider effect into fading. Now i’ve just tried to find triton.js / js folder… unfortunately without success, could you help me with this?
Use this plugin to access that file:
http://wordpress.org/extend/plugins/wp-filemanager/
First install that plugin and then go to plugins settings page and make sure you enable editing, opening, saving etc.
Then navigate to wp-content/themes/triton_lite/js/ folder and open up triton.js file from there.