ThemeForest

Sleekslide Portfolio - 4 in 1

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

Hi Kriesi,

I’m looking to purchase your theme but I have a question. Are you able to change the type of transition for the slider? I’d prefer a simple slide or fade out.

Thanks much, Anna

Posted 2 years ago
Author
Kriesi Kriesi replied

sorry, this is unfortunatley not possible out of the box. you would need to implement a basic crossfading javascript for this

Posted 2 years ago
AnnaDeShawn AnnaDeShawn replied

Thanks for that info. I’m assuming I would change it in the header.php file. Can you point me to some workable code? There is a lot out there…

Posted 2 years ago
Author
Kriesi Kriesi replied

I can only shw you the direction since doing this would at best last “a little” :) you need to first remove the javascript call from custom.js at line 210: my_smothscroll();

that will disable my slider. then you need to find a script that can handle the structure of the theme, most of the popular slideshows should be able to do that. They need to be able to fade complete divs, not just only images. the divs that needs to be exchanged are the .slider_container within #sleekslide.

Embed the new script into your head and make sure that its using jQuery or bare-bone javascript, I wouldnt recomment to use an additional library. you can call the script in custom.js or in the head of header.php

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
cptnem0 says
Purchased

Hello Kriesi,

I have had this theme since last year. After upgrading wordpress to 2.9.1, the drop down navigation broke.

On mouse over when page loads, it works find, but if you mouse over again, it does not drop down. It must be something in the CSS or Jquery that is not compatible with the upgrade.

Any suggestions?

Posted 2 years ago
Author
Kriesi Kriesi replied

you might want to check your custom.js file and look if the first function is similar to this:

function kriesi_mainmenu(){
    if(!jQuery.browser.msie){// IE  - 2nd level Fix
    jQuery(" #nav ul ").css({opacity:"0.95"});
    }
jQuery("#nav a").removeAttr('title');
jQuery(" #nav ul ").css({display: "none"}); // Opera Fix
jQuery(" #nav > li > ul").parent().find("a:first").append("<span class='sub_list'>&nbsp;</span>");
jQuery(" #nav ul li > ul").parent().find("a:first").append("<span class='sub_sub_list'>&nbsp;</span>");

jQuery(" #nav li").hover(function(){
        jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).show(400);
        },function(){
        jQuery(this).find('ul:first').css({visibility: "hidden"});
        });
}

if thats not the case you might want to update it with this code

Posted 2 years ago
Purchased
cptnem0 cptnem0 replied

Thanks Kriesi, that worked. Not sure what was different in the code, I couldnt find the broken syntax, hmm, but copy/paste of your code did the trick.

Another question; when i check the logs, I am periodically getting error (about 5 times in 1 year): [20-Feb-2010 18:57:52] PHP Fatal error: Call to undefined function get_header() in public_html/wp-content/themes/sleekslide/index.php on line 1 ### The line 1 in header is <?php global $kriesi_options; ?>

Maybe the server is the problem, going when funtions arent loaded because of server issue?

Thanks for your help!

Posted 2 years ago
Author
Kriesi Kriesi replied

not really sure why this happens, sorry :/

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

Hey Kriesi, Once again – great theme, loving it. Quick question – the images in the slider – is it possible to assign alt tags to them at all? Here’s the image code:

<img alt="" src="http://farm3.static.flickr.com/2494/4158075773_19275cab12_o.png">
I see there’s an alt="" but where do I specify that? Thanks in advance. Jas

Posted 2 years ago
Author
Kriesi Kriesi replied

sorry there is no way to add alt tags from your backend. the blank alt tags are hardcoded into the theme to make it pass html validation…

Posted 2 years ago
Purchased
minion minion replied

That’s a pity…

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

And another, is it possible to have an active link in the text (excerpt or otherwise) of the individual slider items? Thanks again. Jas

Posted 2 years ago
Author
Kriesi Kriesi replied

if you add the html markup for the link into the excerpt field when writing a post (this is located bellow the textarea for the full content) then it should work just fine…

Posted 2 years ago
Purchased
minion minion replied

Great – thanks for that – works a treat.

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

Ok, a JQuery question this time – is it possible to update the theme version (1.2.6) to the latest version (without anything breaking) – and perhaps reference the Google api – like so: http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js ? Thanks again. Jas

Posted 2 years ago
Author
Kriesi Kriesi replied

Well, i would say just give it a try, i dont think i’ve used anything that got changed during the last version but of course I am not 100% sure :)

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased
I’m on a roll, you know how you have ‘options’ – these seem to relate to which css file to load(?) is it possible to prune out the one’s not being used from header.php – for example:
<?php if($kriesi_options['whichdesign'] == 4){ ?>
<link rel="stylesheet" href="http://www.aotearoawebdesign.co.nz/wp-content/themes/sleekslide/css/css/style4.css" type="text/css" media="screen" />
<?php } else if($kriesi_options['whichdesign'] == 3){ ?>
<link rel="stylesheet" href="http://www.aotearoawebdesign.co.nz/wp-content/themes/sleekslide/css/css/style3.css" type="text/css" media="screen" />
<?php } else if($kriesi_options['whichdesign'] == 2){ ?>
<link rel="stylesheet" href="http://www.aotearoawebdesign.co.nz/wp-content/themes/sleekslide/css/css/style2.css" type="text/css" media="screen" />
<?php } else {?>
<link rel="stylesheet" href="http://www.aotearoawebdesign.co.nz/wp-content/themes/sleekslide/css/css/style1.css" type="text/css" media="screen" />
It appears I’m only using style1.css Jas
Posted 2 years ago
Author
Kriesi Kriesi replied

you can remove pretty much everything but the last line if you only want to use style1.css

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

Last one for the moment – have you done any experimentation with plugin’s that combine & minify css & jscript at all? If so, any recommendations? Thanks again! Jas

Posted 2 years ago
Author
Kriesi Kriesi replied

sorry, never used anything like that, since customers usually want to have their code editable :)

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

Hey Kriesi, This may well have been asked before – so apologies if it has. The homepage of your theme, you know how below the slider it displays the latest blog post – can you tell me how (& what files) I can change to make this area simple static content. I’ve decided I’d rather have the blog posts only accessible from the navigation menu. I’d like to tailor the content on the homepage of my site a little more, have some calls to action there – that kinda thing. Thanks again. Jas

Sorry – I’ve figured it out! Thanks :-)

Posted 2 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
  • New Zealand
minion says
Purchased

Hey Kriesi, You know the slider – how (what) could I change so it automatically transitions from one slide to the next? Thanks :-) Jas

Posted 2 years ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
jwalzl says
Purchased

Hi Kriesi,

I’m new to wp-themes. Bought your Sleekslide portfolio (looks great) but I think I’m missing something? The following message appeared when I uploaded the theme “All of this theme’s files are located in /themes/sleekslide-portfolio-4-in-1-source/sleekslide”. I’m not sure if this is the source of my problem, but I can’t do much with the theme. I’ve tried desperately to get photos in the slider/header. How can I do this? my website: www.walzl.ca

Thanks for your help/time.

Walzl

Posted 2 years ago
  • Has been a member for 3-4 years
  • Author had a File in an Envato Bundle
  • Author had a Free File of the Month
  • Exclusive Author
  • Power Elite Author: Sold between 1 000 000 - 1 999 999 dollars
  • Power Elite Author
  • Bought between 50 and 99 items
  • Austria
  • Referred more than 2000 users
Kriesi says
Author

Important Announcement

From this day on, support for all my themes will be available again, but only at the support forum I’ve setup at my website:

http://www.kriesi.at/support

The reason I have choosen to use my own forum are quite simple:

Themeforest support threads are not searchable. Since most questions are asked over and over again a searchable forum will make it possible that you dont even need to wait for my response, because its already there.

Second Reason: people can’t respond to each other at themeforest to help each other out, while I am busy with other tasks.

Third Reason: it is very inconvenient for me to check multiple places if support requests where made (here at themeforest, my themeforest mail account, my websites mail account, facebook group, twitter etc) Therefore I decided to channel those requests at one place and make it available to everyone so all of you guys can benefit.

For more information read the sidebar instructions on how to setup an account and get support :)

Best regards Kriesi

Posted 2 years ago
  • Has been a member for 1-2 years
  • Bought between 50 and 99 items
LiveQueens says

btw, when was the last update of this theme ?

Posted 1 year ago
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
jieyinlove says
Purchased

I bought this two yrs ago, last night I was told by 1and1 this application not support any more(can’t unpack on wordpress 3.1.1), is that ture?

Posted 10 months ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
jskates says
Purchased

I’ve searched around but can’t seem to find the answer. My home page is limited to only 3 posts and I can’t for the life of me remember where to change that. I seem to remember being able to do it, but can’t remember. Thanks in advance for the help.

Posted 9 months ago
  • Has been a member for 2-3 years
  • Bought between 10 and 49 items
  • United States
CStevenson says

Hi.

Your themes are beautiful and well balanced. I’ve purchased a few and would purchase more, but only if I see upgrades happening.

Any chance you will update this theme (and others you’ve developed) for wp 3.0 and later?

Posted 8 months ago
  • Has been a member for 3-4 years
  • Author had a File in an Envato Bundle
  • Author had a Free File of the Month
  • Exclusive Author
  • Power Elite Author: Sold between 1 000 000 - 1 999 999 dollars
  • Power Elite Author
  • Bought between 50 and 99 items
  • Austria
  • Referred more than 2000 users
Kriesi says
Author

Support requests

Hey Everyone! If you have purchased the theme and need help please use the Forum at http://www.kriesi.at/support My support staff will take care of your probelms :)

If you have any presales questions feel free to drop me a mail via my contact form

Cheers! Kriesi

Posted 8 months ago
  • Has been a member for 3-4 years
  • Bought between 50 and 99 items
lamar533 says
Purchased

Is there a way to just have the post on the slider to automatically cycle thru the post instead of having a next project button to advance to the next post?

Posted 6 months ago
  • Has been a member for 4-5 years
  • Bought between 1 and 9 items
arezendes says
Purchased

Troubleshooting SleekSlide slider -

Just wanted to share an experience I had with Sleekslide recently that was resolved. After installing the “Google Analyticator” plug-in, my Sleekslide slider stopped working. Deactivating the plug-in restored the functionality to it’s normal state. Just wanted everyone to be aware that some plugins may conflict with the SleekSlide functionality.

Posted 4 months ago

You must sign in or sign up to purchase this item.

$30Regular Licence

$30

Regular Licence a website (commercial, personal, client), or intranet site project - Details

$1500Extended Licence

$1500

Extended Licence a template for a Web Service such as WPMU, or as part of a Software Package for sale - Details

589 Purchases 338 Comments

Buyer Rating
12345 ( 193 ratings )
Kriesi

Kriesi

  • Has been a member for 3-4 years
  • Author had a File in an Envato Bundle
  • Author had a Free File of the Month
  • Exclusive Author
  • Power Elite Author: Sold between 1 000 000 - 1 999 999 dollars
  • Power Elite Author
  • Bought between 50 and 99 items
  • Austria
  • Referred more than 2000 users
View Portfolio
Created 3 December 08
Columns 2
Compatible Browsers IE6, IE7, IE8
Software Version Wordpress 3.3, Wordpress 3.2, Wordpress 3.1, Wordpress 3.0, Wordpress 2.9
Documentation Well Documented
Layout Fixed
Widget Ready Yes
by
by
by
by
by