ThemeForest

Levitation Wordpress Business & Portfolio - 4 in 1

  • Bought between 100 and 499 items
  • Cyprus
  • Has been a member for 3-4 years

I have downloaded the theme 3 days ago and also i have deactivated all the plugins.

The pages names are in greek. Is this a problem?

I dont know… i’m totally desperated :/

Kriesi

cant imagine that the greek language got anything to do with it…

please drop me a mail with the following data via my profiles page contact form:
  • url to your installation
  • access data to your backend
  • please also add our conversation here (especially your request) for easier reference :)

cant promise anything but I will have a closer look :)

  • Bought between 100 and 499 items
  • Cyprus
  • Has been a member for 3-4 years

Thanks for the support Kriesi.

I sent you the info.

  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 5-6 years
  • United States
fogger Purchased

I want to limit the blog page code to show postings of one category only.. but Im having a hard time inserting the limit or show only one category code..probably because of the lightbox and timthimb code..I know its a simple addon to the loop but show me how to do it..it just needs to display one set of postings in one category only right now the code pulls any post from any category.. <?php if (have_posts()) : while (have_posts()) : the_post(); $more = 0; $width = ‘600’; $lightbox = array(’’,’‘); $frontpage_image = get_post_meta($post?>ID, “frontpage-image”, true); if($frontpage_image != ””) $size = @getimagesize($frontpage_image);

if($frontpage_image != "" && ($size[0]  > $width || !isset($size[0])))
{    
    $lightbox[0] =''; 
    $lightbox[1] =''; 
if($k_options'general' == 1){
$resizepath = get_bloginfo('template_url')."/timthumb.php?src="; #timthumb path    
$resize_options1 = "&amp;w=$width&amp;h=$height&amp;zc=1";
$frontpage_image = $resizepath.$frontpage_image.$resize_options1;
}
}
?&gt;

<?php the_title(); ?>

<?php the_category(‘47, ‘) ?> • on <?php the_time(‘F jS, Y’) ?> • <?php comments_popup_link(‘No Comments’, ‘1 Comment’, ’% Comments’); ?><?php edit_post_link(‘Edit’, ’ ,’, ’’); ?>

thisis your code for the blog page thanks

Kriesi
you dont need to change aything within the loop, just the query that gets the posts: in template_blog.php search for
$query_string = "cat=".$negative_cats."&paged=$paged";
if your category id would be 135 then cheange the query string to
$query_string = "cat=135&paged=$paged";

if you also want to limit the number of pages use the post_per_page attribute. you can read more about it here: http://codex.wordpress.org/Template_Tags/query_posts#Post_.26_Page_Parameters

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

Hello! How do a place an image in replace of the log across the header without it appearing skewed and having the menu encroach on the image? It’s about 150 pix high and 700 pix long…thanks!

Kriesi

1.) i would recommend to just add the picture to header.php and add a unique class or id to the mage, then position it absolute in css and move it with the top and left properties.

2.) depends on which image roator you are using. basically everything can be controlled via css. so if you want to change the front image of the levitation slider search for
#top .featured_item_active img {
width:600px;
}

and

#top .featured_item_active {
left:174px;
position:absolute;
top:25px;
width:612px;
z-index:3;
}

and change size and position. if you are using slider 2 just add smaller images and adjust the size of

#featured {
clear:both;
height:410px;
position:relative;
}

last thing to do, if you want to use automatic resizing open index.php and depending on the slider search either for

$height = '390';
$width = '940';
or
$height = '300';
$width = '600';
and edit it

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

also, is there any way to change the size of the rotating image?

  • Bought between 1 and 9 items
  • Germany
  • Has been a member for 3-4 years
pildorr Purchased

Hello Kriesi,

same question as asweeney. How can I

1. remove the latest news section on the home page and/or 2. change the latest news to a different widget or image etc.

Thanx! Keep up the good work!

Kriesi

the latest news block is not a widget so replacing it with another widget wont work. however you can remove it by removing index.php line 164-167 and add your own html/php code there.

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 3-4 years
  • Sold between 1 and 100 dollars
  • United States

Kriesi,

I am running into an unexpected issue with my portfolio. I can post fine and see the Image for Slider/Portfolio Full Size images on most of my posts. There are some posts that will not display the image in the gallery, only the title. Under the title I see a small gray line. I have deleted the posts and created new ones with different pictures but the same thing happens. Like I said this only happens every so often.
  • Bought between 100 and 499 items
  • Exclusive Author
  • Has been a member for 5-6 years
  • United States
fogger Purchased

yes! thank you for the correct code and placement it works perfectly..now we can have a individual blog page for several different people..each posting only the category assigned to them..neato leeto..:)

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

K -

How do I change the height of the logo area on the homepage?

Kriesi

you can change that in style.css line 118ten. you might need to also increase the size of the surrounding #head div (line 110) and move the main menu down in line 274 by adjusting the top value for #top #nav

  • Bought between 100 and 499 items
  • Cyprus
  • Has been a member for 3-4 years

Hello again,

I have one question.

I have erased the Latest news section in mainpage. How do i add a widget in that position?

I have options to add a widget in every page except the mainpage.

thanks

  • Bought between 100 and 499 items
  • Cyprus
  • Has been a member for 3-4 years

In an older post you said:

3,)remove line 166 and 167 from index.php , you can then put any code there that you want to display…

I already pasted the code you said after line 167 but i dont see an extra widget in the admin panel

<?php if ( function_exists(‘register_sidebar’) ) register_sidebar(array( ‘name’ ?> ‘Extra Sidebar’, ‘before_widget’ => ‘ ’, ‘after_widget’ => ‘ ’, ‘before_title’ => ‘

’, ‘after_title’ => ‘

’, ));

if (function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Extra Sidebar’) ) : endif;

?>

  • Bought between 100 and 499 items
  • Cyprus
  • Has been a member for 3-4 years

problem solved!

here is a good tutorial for starters like me with the same issue. http://www.blogohblog.com/adding-extra-sidebar-to-your-wordpress-theme/

Kriesi

Glad you did it, and thanks for the tip :)

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

Thanks, Kriesi.

I uploaded an image to the header.php file but it appears only in the homepage and not the subpages…any ideas?

Kriesi

not really, if you drop me the url to your site I will take a look :)

  • Bought between 1 and 9 items
  • Has been a member for 4-5 years

I purchased your theme & am having trouble with the twitter section in the header of the blog.

The problem is that your code doesn’t understand most punctuation in the tweets, and converts them to html codes.

I’m not a programmer, can you please post a fix for this?

Thanks.

Kriesi

hey, could you drop me a url to your site and also tell me when you purchased the theme? Ive released a fix for this a while ago, maybe you just need to re download the files from themeforest and get the latest one and replcae the twitter.php file…

Default-user

Hi Kiresi, I’ve re-downloaded the package, and the timestamps on both twitter.php files are the same: from Sept last year. I’ve sent you an email with the URL . Thanks! :)

Kriesi

unfortunatley the url you passed med doesnt work :/

Default-user

Oops! Sent you a new link by email. Here’s a screenshot of the issue too:

http://bit.ly/bwAFaQ

Seems to happen with apostrophes, quotes etc but haven’t tested with the full range of characters. Have you made an update to the file since Sept 2009? That’s the most recent version I downloaded…

Kriesi
please drop me a mail with the following data via my profiles page contact form:
  • url to your installation
  • access data to your backend
  • please also add our conversation here (especially your request) for easier reference :)
  • Bought between 50 and 99 items
  • Has been a member for 3-4 years
  • Japan
kaga Purchased

Hi Kreisi

How do I get rid of the..”Copyright © Kriesi.at – New Media Design – remove this once purchased ;)” text?

Thanks

Kriesi

open footer.php and search for that line, and replce it with your own ;)

  • Bought between 50 and 99 items
  • Has been a member for 3-4 years
  • Japan
kaga Purchased

Ooops, I got it! Please disregard my question.

Thanks

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 3-4 years
  • Sold between 1 and 100 dollars
  • United States

How can I disable a navigation link but still use the sub link

Kriesi

sorry, not sure what you mean. you want to disable the top level item and only make the sub level items clickable, did I get ou right? thats unfortunatley not possible with this basic wordpress function, sorry

blackbeedesign

What can I do to make this possible or work, I am in need of this function for a client.. Please advice what needs to be done to make this work.

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

Kriesi, last question: on the blog page (on blog entries themselves) the sidebars appear on the lower left of the site in the entry content area…any idea why?

Kriesi

might be that you added some html code that kills the layout, maybe an unclosed element. if you drop me a link so I can take a look I will do a quick check for html errors ;)

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 3-4 years
  • Sold between 1 and 100 dollars
  • United States

Is there any way I can create a blog post without the large image showing, I only want the text link to appear, how can I do this.

Kriesi

I am noticing this just yet after I’ve answered a ton of questions but your account doesnt have the purchased badge for this theme. please use the account that purchased the theme to ask further questions. I am sorry for the inconvenince but there are to many people nowadays that rip the theme and try to gett free support ;)

blackbeedesign

Kriesi, trust me that I understand what you mean and I did mention in my earlier posts that a designer we used purchased the theme but he never provided the payment proof. I would love to purchase the theme AGAIN if necessary but would appreciate your support in this case to know if the template can indeed achieve the tasks that my client is in need of.

You can see that I have purchased Display from you and love it, if you can just let me know what can be done I will re-purchase the theme.

Best reagards

blackbeedesign

I purchased the theme with my clients account below.

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

AKA ”BlackBeeDesign” Ok, Kriesi, I purchased the theme since you requested it. Now I need you to tell me HOW to disable a main navigation link from the nav bar yet still have the sub-menu links active and functional. This theme does not support the feature ok, so what else can be done to make this possible. I am really in need of your help on this.

Kriesi

Hey!

I see 4 options here. you either hardcode the unordered list into the header.php file and set the href attribute for the first link item to ”#”

you get a menu manager plugin that can pull this off

you wait until wordpress 3.0 arrives (about 1 month from now), this version of wordpress comes with a menu manager

you add some javascript to the custom.js file that prevents the first level items to be clicked. if you add this at the very bottom of your custom.js file the script will render top level items that contain sub navigation items useles:

jQuery(document).ready(function(){
    jQuery('#nav>li>ul').siblings('a').click(function(){return false;});

});
ohlalacheri

I tried pasting the code at the bottom of custom.js as instructed but keep getting an error. Is there a closing tag that I must apply to it ? Dreamweaver points to the last closing tag of the file stating there is an error.

Kriesi

nope, that code snippet should work fine, checked it on my site and it does…

you migh try to put it at the very top as well, it shouldnt really matter where you put it as long as it isnt placed within another function…

by
by
by
by
by