ThemeForest

Tesla - Advanced Minimalist Business WP Theme

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

I have a portfolio page that displays thumbnails and all of these thumbnails are square. How can I change the thumbnail ratio or provide a custom thumbnail for each post?

My sample page is here: http://72.4.147.222/mount-sheets-portfolio/

highthemes

In /options/general-functions.php around line# 535


add_image_size( 'portfolio1', 616, 200, true ); 
add_image_size( 'portfolio2', 448, 200, true );
add_image_size( 'portfolio3', 281, 201, true );
add_image_size( 'portfolio4', 196, 150, true ); 
add_image_size( 'portfolio5', 151, 151, true ); 

you can change width , height of any portfolio template’s thumbnail size here. After saving the file with new width/height, you will need to regenerate thumbnails using “regenerate thumbnails” Plugin

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Awesome! Thanks for the help. Where can I go to vote or rate this theme? I absolutely love it and want to let everyone know about High Themes!

highthemes

Thanks for your kind words. You can always rate the theme on your dowanloads page.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Another quick question about the theme. I’d like to add text to my portfolio page, but when I do, it doesn’t show up on the page. I’m adding the text in the normal panel where you add text in WordPress Admin, but it doesn’t show up when I render the page. Is there a way around this? Here is a sample of one of my portfolio pages:

Portfolio Sample Page

highthemes

It’s not possible by default. But, you can add it easily. Open one of tpl-portfolio-Xcol.php from /includes/

then add

              <?php if (have_posts()) : ?>
          <?php while (have_posts()) :the_post();?>
         <!-- [Post] -->
            <div class="post single" id="post-<?php the_ID(); ?>">
                <div class="post-details">
                    <div class="entry">
                          <?php the_content();?>
                        <?php the_tags('<div class="tags?><strong>'.__("Tags:",'highthemes').' </strong>', ", ", "</div>");?>
                          <div class="fix"></div>
                    </div>
                </div>
                <div class="fix"></div>

          <?php endwhile;?>
          <?php endif;?>
            <!-- [/Post] -->
before 
$posts_per_page
  • Bought between 50 and 99 items
  • Has been a member for 2-3 years

Hi. Is there a way to insert an image into a post with prettyPhoto effect (like portfolio page)? Thanks

Default-user

Thanks! Any plan to add a shortcode?

highthemes

In future updates, yes

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years
  • Referred between 100 and 199 users

Love this theme! I click on the thumbnails of featured images of all over my site, and the images trying to pop up bigger(or original image), but happens nothing. Original bigger images don’t come out. What would be the matter? Help me out.

see http://kopops.trizm.net

thanks advance..

highthemes

Please update prettyPhoto plugin by downloading from here http://dl.dropbox.com/u/9315746/Tesla/jquery.prettyPhoto.js

and replacing it in /scripts/

  • Australia
  • Bought between 50 and 99 items
  • Exclusive Author
  • Has been a member for 3-4 years

Hey..
Is it possible to have a gallery that uses the 5 column portfolio without having to create a new post for every image?
Cheers

highthemes

Hi, No sorry, it’s not possible.

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
saudlin Purchased

I’ve tweaked a couple items on the theme and now I have extra arrows showing at the top of the main navigation. Where in the css can I fix this?

See on home page http://mansfielddermatologyarlington.com/

Thanks for a great theme!

-S

highthemes

Sorry, we only do support for basic theme issues. You’ve edited the CSS .

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

I see the post above referencing changing the proportions for the portfolio template thumbnails, where can I adjust the proportions for the blog thumbnails that appear on the category pages? TIA .

highthemes

Go to options/general-functions.php #line 532 add_image_size( ‘blog-image’, 192, 99, true )

change 192 and 99.

Then install regenerate thumbnail plugin and regenerate thumbnails.

Default-user

Thanks, I thought that was it but it didn’t seem to have an effect for a while after I adjusted it and then started working – I think it was a cache issue.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

Hi. Could you tell me how I can remove “Comments Off” from post? Please advise. Thank you.

highthemes

unfortunately it’s not possible. Because it is produced by wordpress.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

Thank you for your reply. Sorry. My explanation was not enough. I want to remove the word “Comments Off” from the post status list on the top of each post (please see below).

June 8, 2011 | admin | Projects | Comments Off (<—I would like to remove this)

I could remove “Comments Off” from other themes before, but not this time. Please advise.

Thank you.

highthemes

So you must open those pages that have wordpress loop including: index.php, tpl_blog.php, archive.php, author.php and search.php

and put the following piece of code inside html comment to remove it

          <?php the_category("<spa?> | ");?>
<!-- <span>|</span>
          <?php comments_popup_link(__('No Comments','highthemes'), __('1 Comment','highthemes'), __('% Comments','highthemes')); ?>-->
  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

I put the code into index.php, tpl_blog.php, archive.php, author.php and search.php, but it still shows “Comments Off”...

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

Hi. Please see below. Did I do right? I also want to not show “author” if it’s possible. Please advise. Thank you!

<?php the_date(); ?> | <?php the_author_posts_link();?> | <?php the_category(”<spa?> | “);?> <!— | <?php comments_popup_link(_(‘No Comments’,’highthemes’), _(‘1 Comment’,’highthemes’), __(’% Comments’,’highthemes’)); ?>—>
 
highthemes

You must find that code

<span>|</span>
 <?php comments_popup_link(__('No Comments','highthemes'), __('1 Comment','highthemes'), __('% Comments','highthemes')); ?>

and remove it or put it inside html comment. Try removing the code.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

Hi. I removed the code from index.php, tpl_blog.php, archive.php, author.php and search.php. (please see below.) But it still shows “Comments Off” part… Usually I removed the code but it did not work this time. Any ideas? Thank you.

<small class="meta"> <?php the_date(); ?> <span>|</span> <?php the_author_posts_link();?> <span>|</span> <?php the_category("<spa?> | ");?> </small>
highthemes

Please send me your wp login data using my profile page.

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
etsuko Purchased

Hi. I just sent you the info. Thank you for your support.

highthemes

replied

  • Bought between 50 and 99 items
  • Has been a member for 2-3 years

It looks like the portfolio pages are displaying gallery items by post ID as opposed to post dates. How can I switch it to display by date? I need to have my gallery images in a certain order and it will be easiest to do that with future images by adjusting the post date.

I tried making some changes in the tpl-portfolio-1col.php file, but that didn’t work.

highthemes
open tpl-portfolio-Xcol.php files where X is numbers. find
      query_posts("post_type=post&paged=$paged&cat=$ht_page_type_category&posts_per_page=$posts_per_page&orderby=ID&order=DESC");

and replace it with

      query_posts("post_type=post&paged=$paged&cat=$ht_page_type_category&posts_per_page=$posts_per_page&orderby=date");

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Ran into the problem with the contact page where after sending the message it goes to a blank screen with no links and the message ‘thanks___your message has been submitted to us”

what to do?

highthemes

please let me know the URL

Default-user

send email with info – thanks for looking at it.

Default-user

Thanks, worked perfectly

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
saudlin Purchased

How can I remove thee slider thumbnails on the home page?

highthemes

open /includes/slideshow.php remove what you see between <!- [Slider Thumbs] -> <!- [/Slider Thumbs] ->

then open style.css find #featured-area{}

and change the height to 335px;

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
saudlin Purchased

Perfect! Thanks for an awesome theme!

  • Bought between 10 and 49 items
  • Has been a member for 3-4 years
saudlin Purchased

I’m not sure why put I’m also having my excluded category show u pin my blog. I put the excluded category number, and I double checked I had the right categories checked…am I missing something else?

highthemes

Please send an email with your wp login data.

Default-user
saudlin Purchased

Sorry, I’m referring to another project/theme. Thanks again for your help!

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

Is it possible to link one of the front page slider images to an external link?

highthemes

No, in tesla it’s not possible by default unless you customize it.

by
by
by
by
by