Comments on: StudioPress WordPress Theme Released https://dailyblogtips.com/studiopress-wordpress-theme-released/ DailyBlogTips.com takes you from SEO to CEO. You’ll learn everything you need to know to master blogging, SEO, marketing, web design leading you to passive income. Wed, 26 Jul 2023 22:38:30 +0000 hourly 1 https://wordpress.org/?v=6.4.3 By: NnpctO https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1282879 Fri, 19 Nov 2010 12:13:21 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1282879 I need to receive from you mailing “Daily Blog Tips” I has subscribed for mailing and has already passed 4 days and I and hasn’t received anything. Please, look there at itself your post program can doesn’t dispatch the letter in my address? Or you while don’t have at present material for mailing?

]]>
By: Lisa https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1250619 Sun, 12 Sep 2010 22:52:04 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1250619 In reply to Melvin.

Melvin,

This is because if you cut and paste from Terry’s response into your header.php the last ” at the end of 38 turns into a funky character. Here is what I did.

Go into your header.php and find the original unedited code. Open up notepad and paste it in notepad

Then take this code and paste it below the original code

get_results(`select ID, post_title from `. $wpdb->posts .’ where post_status = `publish and ID != `38″ and post_type = `page order by ID’);

Then just follow the code word for word and make the changes.

Also for any of you that are not code savvy like me, to remove multiple pages it will look like this:

get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and ID != “9” “publish” and ID != “11” and post_type = “page” order by ID’);

Repeat this code “publish” and ID != “9” for each page that you want to remove. Took me a few tries to get it 🙂

]]>
By: Melvin https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1233621 Wed, 18 Aug 2010 16:49:31 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1233621 Hi,

It is there any way to take off the sidebar for a specific page?

Regards,
Melvin

]]>
By: Melvin https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1201798 Sat, 03 Jul 2010 00:38:21 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1201798 In reply to Terry.

Hi,

i tried :
get_results(‘select ID, post_title from `. $wpdb->posts .’ where post_status = `publish and ID != `11″ and post_type = `page order by ID’);

but all pages got removed, and I want to exclude.

Can you help?

Thanks,
Melvin

]]>
By: Denny https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1183369 Sat, 05 Jun 2010 13:15:42 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1183369 When adding a new post, is there a way to manually select an older post to remain in the top position?

Thanks

]]>
By: Hardy https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1100552 Thu, 25 Feb 2010 21:22:26 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1100552 Hey, I’m totally a newbie here. My WordPress is 2.9.2. also installed are advertising manager 3.4.16, Using StudioPress Green 1.0 I have account with Google Adsense setup and its running OK, but there are the images wide skyscraper, imagad and banner still showing on web site. How do I remove those pre-installed images? PS at this time I’m only using two ads with Adsense: wide skyscraper 160×600 and large rectangle 336×280 take a look at it

]]>
By: Keith https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1082283 Mon, 08 Feb 2010 09:21:05 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1082283 I just spent about an hour going through these comments and playing around with the theme to get the top menu’s removed from the plug-ins to the header.php hacks and none worked.

However, @ Terry’s suggestion above worked like a charm!

So if you have come this far then use his example above to remove the pages you don’t want displayed in the menu.

It would be nice though if someone could workout how to use a plugin e.g. pageMash as it would be quicker and easier to work with. Maybe I might look into this myself, but I’m no coder just a hacker 🙂

]]>
By: Terry https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1074987 Sun, 31 Jan 2010 04:48:48 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1074987 For everyone that would like to remove pages from the top navigation. Find this:

get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by ID’);

and change it to this:

get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and ID != “38” and post_type = “page” order by ID’);

In this example, it will remove page id 38

Terry

]]>
By: Jamal https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1065135 Sat, 16 Jan 2010 17:35:13 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1065135 Thanks for your solution friend that’s what iam looking for

]]>
By: Brian Moseley https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1064541 Fri, 15 Jan 2010 21:08:40 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1064541 @kdogg and other people about the page order problem, here is the solution:

in header.php on line 47 replace the code with:

if ( ! $these_pages = wp_cache_get(‘these_pages’, ‘pages’) ) {
$these_pages = $wpdb->get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by menu_order’);

simply change the last “ID” to “menu_order”

Thanks to Jason (post #290)

]]>
By: Carmen https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1061477 Mon, 11 Jan 2010 06:59:54 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1061477 Hey, I’m having one problem with this theme, I have my posts page on a different page other than the home page, and the active state for that posts page doesn’t work, that active tabs work on all other pages except for what ever the posts page is. Does anyone know why and how to fix this.

]]>
By: David https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1053946 Thu, 31 Dec 2009 06:13:39 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1053946 Firstly, I love the theme it’s nice and clean.
My one issue and I’ve noticed a couple of others have brought this up as well, is the comments on pages don’t seem to work. Any ideas why?
When I click the (leave a comment) link at the bottom of the page it just adds #respond to the end of the url but nothing happens.

]]>
By: FlicksRealm https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1004205 Mon, 26 Oct 2009 14:47:28 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1004205 The code hasn’t posted again properly. Please delete these last 3 comments and edit the original comment.

Thanks! 🙂

]]>
By: FlicksRealm https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1004091 Mon, 26 Oct 2009 12:17:08 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1004091 I have had somebody email me about the code above which hasn’t posted correctly. Maybe the owner of the blog could edit the above comment to:

]]>
By: FlicksRealm https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-1003748 Sun, 25 Oct 2009 23:15:02 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-1003748 I noticed the logout function doesn’t work properly on my site next to the comments.

I modified the code in comments.php to logout properly and return to the current page…

From:

“Logged in as <a href="/wp-admin/profile.php”>. <a href="/wp-login.php?action=logout” title=”Log out of this account”>Logout »”

To:

“Logged in as <a href="/wp-admin/profile.php”>. <a href="” title=”Logout”>Logout”

Hope that helps somebody!

]]>
By: Paul Dunn https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-984929 Mon, 28 Sep 2009 22:54:04 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-984929 Love the studiopress design. I’ve forwarded your site to some friends who have also downloaded it. Also thanks to you and the others in the comment stream who have helped me solve an issue with the TABS.

cheers
Paul

]]>
By: islandfun https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-982237 Thu, 24 Sep 2009 21:26:54 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-982237 Hi: I’m a newbie here and just downloaded this theme. Can someone tell me how do I edit the footer to include my disclaimer, privacy policy and contact pages?

]]>
By: Russ https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-981389 Wed, 23 Sep 2009 20:46:40 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-981389 Hey, just a quick question: I’ve been using and enjoying the original version of StudioPress, but just noticed that there’s an upgrade – to version 2.1.

What’s the quick, down and dirty way to upgrade without losing any of my current formatting, display, appearance, etc?

Since I’ve had this theme for a few years, I sure don’t want to lose all the tweaks I’ve made during that time.

Hope you can help and thanks for such a nice theme!

Russ

]]>
By: Jamal https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-943685 Fri, 07 Aug 2009 17:13:02 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-943685 Hai I think iam a late user of studio press its alright thanks to creators of this superb theme.

two 1.question i want to put a new file i manually created ex time.php i want it to place in studio press themes folder it shows
500 cannot check for file extension
What may be the problem how to fix it
2.When I click the #respond (leave a comment) link at the bottom of my pages, nothing happens. How can I fix that?

]]>
By: DJSlim https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-932588 Fri, 24 Jul 2009 01:24:10 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-932588 in the wp_list pages in the header, is there a way to make the first letter capitalized on the tabs?

thanks

]]>
By: Zero Gaming Alliance https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-925854 Thu, 16 Jul 2009 18:09:29 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-925854 By: Lena https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-909032 Tue, 30 Jun 2009 22:32:59 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-909032 When I click the #respond (leave a comment) link at the bottom of my pages, nothing happens. How can I fix that?

]]>
By: Simon https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-908927 Tue, 30 Jun 2009 19:26:16 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-908927 Hi everybody,
I just know the basics of html and editing php.
So my Question are

1.is it possible to change the top menu.
I want it to show the categories instead of the pages.
I tried to rewrite it but i failed many times.

2.Am I allowed to edit the images of the Theme if i (of course) leave ur credit in the footer?

Thank u very much!
And by the way: Love the Theme 🙂

Bye
Simon

]]>
By: Jason https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-907739 Mon, 29 Jun 2009 10:01:30 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-907739 im still looking for a widget to display recent posts. The one that I have found seems to double post it and does not stay in a single column. There is one to display posts in specific cats but I would like one for all recent posts in all cats. Anyone?

]]>
By: Jason https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-907732 Mon, 29 Jun 2009 09:45:29 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-907732 someone else tried it and it didn’t work. You sure you are editing the correct line and bit. You just change the last “ID” to menu_order.

Obviously afterwards you have to go through each page and a edit the number so 1 will be top left and 2 next etc etc. I am not at all good with html stuff so can’t really offer any adivice.

]]>
By: Kye https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-904803 Fri, 26 Jun 2009 09:44:58 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-904803 Hey Jason.

I tried that small tweak and it does not work for me. Pages set in hierarchy are still showing on the main header.

Any more tweaks to try will be very welcome. I love this theme but i cant have this page issue.

Kye.

]]>
By: Jason https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-904069 Thu, 25 Jun 2009 16:01:14 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-904069 off another site. How to solve the page order issue

In line 45 of header.php change “ID” to “menu_order”.

$these_pages = $wpdb->get_results(‘select ID, post_title from ‘. $wpdb->posts .’ where post_status = “publish” and post_type = “page” order by menu_order’);

]]>
By: Jason https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-904066 Thu, 25 Jun 2009 15:59:46 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-904066 Haven’t been able to get the exclude page plugin to work on studio press. A new page which is selected to be excluded still stays as a tab. Has anyone managed to get it to work. Or has anyone found a way to add posts without them being displayed in catagories or blog.

In short I need to be able to have some pages of content which are not in any menus from the readers point of view.

]]>
By: ดูหนัง https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-900003 Sat, 20 Jun 2009 13:12:11 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-900003 I love this them. I will use it on my next blog. Thank you.

]]>
By: Peter https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-895782 Mon, 15 Jun 2009 13:05:38 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-895782 nice theme, best for seo

]]>
By: seven https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-895292 Sun, 14 Jun 2009 20:07:50 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-895292 I am trying to activate de subpages in the nav bar.I am using blogger.com and I dont know how to do it.
I want to have subpages in the nav bar whit diferent content

]]>
By: Csaba https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-892848 Thu, 11 Jun 2009 21:36:53 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-892848 Very nice theme. Thank you.

]]>
By: thunderclap82 https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-892637 Thu, 11 Jun 2009 15:15:38 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-892637 I’m trying to get the pages in the nav bar (header) in a specific order. The WP code doesn’t seem to apply as others have pointed out here. The code that seems to be the culprit is

echo list_all_pages();?>

Is there a variable to have it sort the page order by the number assigned in the WP Admin Panel?

]]>
By: quocvuong https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-890663 Tue, 09 Jun 2009 04:10:15 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-890663 I can’t see comment in the pages same the posts when i changed this template.
Help me

]]>
By: Eamon https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-885506 Wed, 03 Jun 2009 08:08:50 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-885506 I am having trouble displaying the two side bar adsense when a posted is directly accessed. It is fine on the home page but when accessed directly the post will only show the top adsense bar and not the two side ones. Kinda strange….

]]>
By: Ari https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-880160 Thu, 28 May 2009 17:50:12 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-880160 This is an incredible and I am using it to develop a new site.

How can I replace the header text with a logo image? I am a bit tech savy but I am certianly not a coder.

Any help would be greatefully appreciated!

Thanks – Ari

]]>
By: kath https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-871421 Sun, 17 May 2009 20:13:38 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-871421 Hi!

im using wp2.71 and uploaded the theme studiopress1.2 i initially installed 1.0 but wordpress says there a new version 1.2 but when i tried the option “upgrade automatically” installation failed so i jsut manually downloaded and uploaded the 1.2 version and activated it.

anyway, on both versions im having trouble with the widgets thing. it seems that no matter how i change the widgets on my sidebar 1 and 2, and even tried to empty it all, when you view my page the categories widget always appear on top of the sidebar 1. how do i remove that there and make my sidebars show only the widgets i put in?

also how do i change my rss feed link on the “grab our rss feed” on the upper right corner of the page?

please email me if you have answers to my questions. i’d really appreciate it. thank yo so much

]]>
By: Chentsol https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-868532 Wed, 13 May 2009 23:11:15 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-868532 DBT are strange; basically my correction appeared before the text I was correcting did… I wrote (278) before (277)

]]>
By: Chentsol https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-868525 Wed, 13 May 2009 23:08:36 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-868525 @275 KIRK,

FIRST: In your StudioPress folder within your server, or before you upload, locate the folder called “images” and inside it find the file “grabrss.gif.”

This is the image file for that RSS graphic, and you will basically need to place your logo in here and ask the “header” code to point to your new image.

THIS IS THE BEST WAY TO ACHIEVE THIS:

(1) If you don’t want to use this graphic anywhere at all, then delete “grabrss.gif”

(2) Upload or place your logo image file (e.g. “Newlogo.jpg”) inside the “images” folder.

(3) From your admin dashboard look in your “header.php” and go to line 31, and the next few lines underneath, which look like this;

<a href=”feed:”>
<img src=”/images/grabrss.gif” alt=”grab our rss feed”>

(4) DELETE this line:

<a href=”feed:”>

That line of code controls the link to the RSS feed.

(5) In the line “<img src=”/images/grabrss.gif” alt=”grab our rss feed”>,” Repalce “grabrss.gif” with your new image filename, i.e. “Newlogo.jpg”

(6) Make sure to replace the alternative text as well, i.e. replace alt=”grab our rss feed” with alt=”your new text for logo.”

IF YOU WANT TO LINK YOUR LOGO I CAN’T HELP YOU…

However, at Step 4, I think you would have to EDIT instead of deleting the line:

<a href=”feed:”>

and replace

“feed:”

with your link URL (e.g. to your home page).

WHILE I AM HERE, I NEED SOME HELP OF MY OWN:

DOES ANYONE KNOW HOW TO STOP THIS THEME FROM FORCING A COLOR FOR LINK TEXT?

I am also trying to stop it underlining all my links, but I don’t know how to do this.

Your help would be very much appreciated.

Thanks,

Chentsol

]]>
By: Chentsol https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-868521 Wed, 13 May 2009 23:06:18 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-868521 Sorry;

That was “Server”, Not “Saver”

And off course It’s Step (6) from 5!

LOL! LOL!

]]>
By: Chentsol https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-6/#comment-865312 Sat, 09 May 2009 18:38:47 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-865312 I wonder if someone can help – i.e. if possible, please?

Basically, within the Meta area in the sidebar, there is this link to wordpress.org that I’d like to remove. I have gone into sidebar.php and removed line 49, which I thought was the reference to it, but this appears to have had no effect.

Thanks

]]>
By: Kirk https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-862193 Wed, 06 May 2009 07:18:15 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-862193 Hello,
Is it possible to place a logo on the StudioPress blog, say in the upper right hand corner instead of having the RSS Feed message?

Thanks,
Kirk

]]>
By: real estate https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-849027 Wed, 22 Apr 2009 11:53:55 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-849027 Well done because Studiopress has to be one of the most professional generic templates around. It could suit literally thousands of different topics which is precisely why I’m downloading it

]]>
By: Mário https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-847841 Tue, 21 Apr 2009 13:49:07 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-847841 found the solution, thanks, I saw somebody also asked so what I did was ading this code to the css file.

img.alignleft, div.alignleft {
float:left;
margin:0 0.5em 0.5em 0;
}
img.alignright, div.alignright {
float:right;
margin:0 0 0.5em 0.5em;
}
img.aligncenter, div.aligncenter {
text-align:center;
margin:0 auto;
}

]]>
By: Mário https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-847775 Tue, 21 Apr 2009 12:58:12 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-847775 Having problem with text around the image, it was fine, but with this great theme I does not look good.

]]>
By: Eric Wong https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-839654 Mon, 13 Apr 2009 15:38:12 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-839654 Hey Guys,

Great theme, I love the design. I think I’ve found a bug though.

I’m using a Plugin called ‘Page Link Manager’. What it does is allow you to not show Pages that you create in the navigation area.

The page I don’t want shown is ‘Registration Confirmed’ at the top of my page. I’ve unchecked it in Page Link Manager, but it still shows.

Also – centering images is an issue.

Any ideas?

Thanks,

Eric

]]>
By: oscar https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-838329 Sun, 12 Apr 2009 05:00:39 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-838329 amazing theme. using it right now. thanks 🙂

]]>
By: djrico https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-837295 Sat, 11 Apr 2009 08:30:35 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-837295 I love this theme! I wanna use it but it would be better if I could have the PSD files. Thanks Daniel!

]]>
By: Kushal Koolwal https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-835188 Thu, 09 Apr 2009 21:55:08 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-835188 Yes papabear. Index.php and home.php are the exactly the same file. If you simply delete/rename home.php WP will automatically use index.php. I have done that with my installation and it works great.

I am very puzzled as to why the author had two exactly same files.

]]>
By: papabear https://dailyblogtips.com/studiopress-wordpress-theme-released/comment-page-5/#comment-834341 Thu, 09 Apr 2009 07:25:48 +0000 https://dailyblogtips.com/studiopress-wordpress-theme-released/#comment-834341 can we change the template to use index.php instead of home.php. I have a program that would only run if the code is installed on index.php.

please help

]]>