ThemeForest

istudio - Clean and Minimalist Business Theme

  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
drmayor2004 says
Purchased
I just upgrade to version 2.0 of this theme, My created pages are not displayed on the hompage. http://www.ostudiolabs.com/

Please help me

3 months ago
Author
imediapixel imediapixel replied

you can manage this from WordPress menu manager, please to Appearance => menus menu, you can include menu items and order the items from there.

Thanks.

3 months ago
Purchased
Default-user drmayor2004 replied

The problem is the Pages and Menus are not showing on the header. I have done what you advise me to do but still is not coming up…

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
drmayor2004 says
Purchased

Also, those this theme support wordpress network? I tried with a network site but the sideshow is not working.

Help

Thanks

3 months ago
Author
imediapixel imediapixel replied

Hello, by default it’s does not support multisite mode, you need to modify the code for this, just open functions.php file and find below code :

function thumb_url(){  
  global $post;

  $thumb_src= wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array( 2100,2100 ));
  return $thumb_src[0];
}

now replace with :
function thumb_url(){
 global $post;
 global $blog_id;

       if(isset($blog_id) && $blog_id > 0) {

       $imgSrc = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array( 2100,2100 ));
       $imageParts = explode('/files/',$imgSrc[0] );

       if(isset($imageParts[1])) {
               $src = '/wp-content/blogs.dir/' . $blog_id . '/files/' . $imageParts[1];

       } else {
               $thumb_src= wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array( 2100,2100 ));
               $src = $thumb_src[0];
       }
       }

       return $src;
}

Thanks.

3 months ago
Purchased
Default-user drmayor2004 replied

i can find this code }

function thumb_url(){  
 global $post;
$thumb_src= wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), array( 2100,2100 ));
return $thumb_src[0];

in function.php.

Help me

3 months ago
Author
imediapixel imediapixel replied

Sorry I mean, in theme-functions.php file that located in functions folder of istudio theme.

Thanks.

3 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
drmayor2004 says
Purchased

It works thanks but what about the page stuff.. is not working check this link http://www.ostudiolabs.com

then u will notice that there is not pages on the header. Which means the page i created in wordpress admin is not showing up in the header.

Thanks

3 months ago
Author
imediapixel imediapixel replied

Hello, you need to manage this from WordPress menu manager, please go Appearance => menus menu in your admin panel, you can include and order the menu items from there.

Thanks.

3 months ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
WPMacUser says
Purchased

Hello,

I have created a profolio page called Media at http://carvedsouls.com When I click on the thumbnail to load the media nothing happens, it’s not working. The site has been running slow as well.

Please advise, would really appreciate it. Wonderful theme. Thanks G

3 months ago
Author
imediapixel imediapixel replied

Hello, looks like there’s a prettyphoto code problem in lightbox window, ok just contact me from my profile page with your site login, let me check directly at your site.

Thanks.

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

Can I set the blog as home page? How? Thanks,

2 months ago
Author
imediapixel imediapixel replied

Hello, yes you can do this, please go to Settings => Reading => Front page displays => A static page (select below), select your blog page from the options.

Thanks.

2 months ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
KGBLondon says

Hi there,

I’m considering purchasing your IStudio theme, it looks great. I was just wondering if it would work with the simple full screen background image plugin for Wordpress (http://wordpress.org/extend/plugins/simple-full-screen-background-image/screenshots/). I know plugins can sometimes clash with themes.

I need to create a site that has the same full screen background on all the pages, like on this site: http://artfairslondon.com/ and thought your layout could be very suitable.

Many thanks,

Khaled

29 days ago
Author
imediapixel imediapixel replied

Hello, yes you can have a full screen background image with istudio theme, you can use plugin or you can add additional css code in istudio theme options => styling options => custom css :

body {
        background-image: url(your_uploaded_background_image_url);
        background-position:  center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
      }

Thanks.

28 days ago
  • Has been a member for 0-1 years
  • Bought between 10 and 49 items
Youthful_Investor says
Purchased

Thanks for this theme. It works really well. I have I hope a simple question. I noticed in the portfolio page when I give a title that reads with an apostrophe for example, McDonald’s that it capitalizes the “S” after the apostrophe so that it reads, “McDonald’S.” How can I fix this?

24 days ago
  • Has been a member for 0-1 years
  • Bought between 10 and 49 items
Youthful_Investor says
Purchased

To my previous question… I figured that out. It was just an easy fix in the Istudio settings part.

Perhaps another simple question… How can I get rid of the linking function of the 3 Column Site Features? For example, I just want them to be short blurbs, not leading to any other page. However visitors still get their cursors turning to click for a link.

24 days ago
Author
imediapixel imediapixel replied

Hello, to remove this, please open featuresbar.php file, find and remove each below code:

<a href="<?php echo ($homebox_desturl1) ? $homebox_desturl1 : ">"></a>

there’s 3 code link there.

Thanks.

24 days ago
  • Has been a member for 1-2 years
  • Bought between 1 and 9 items
joaomateus says

Hello.

Im considering buying this theme. Want to know if its possible to remove the slideshow/images section?

Thanks.

18 days ago
Author
imediapixel imediapixel replied

hello, yes you can remove this section, you just need to remove some of code line in index.php file.

thanks for your interest.

18 days ago
  • Has been a member for 0-1 years
  • Bought between 1 and 9 items
tanyakersey says
Purchased

I can’t get the slideshow or homepage box sections to show up on my site http://www.thekerseygroup.com. I have no idea what is wrong. I followed all the directions. Help!

18 days ago
Author
imediapixel imediapixel replied

you dont need to set your homepage as static front page, please go to Settings => Reading and leave all options as WordPress default.

Thanks.

18 days ago
by
by
by
by
by