jugularbean
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No Title on Static Home Pagenot a semi-colon…a colon
:copy paste from my code above
Forum: Fixing WordPress
In reply to: No Title on Static Home PageYou missed a colon
<?php if (!is_page(home)): ?>
Forum: Fixing WordPress
In reply to: No Title on Static Home PageWhat you can do is go to your page template file (presentation->theme editor) and look for a line that has the code
the_title();and replace it by
if (!is_page(home))
the_title();Forum: Fixing WordPress
In reply to: Double sidebarCould you post the basic structure of your template.php page?
Forum: Fixing WordPress
In reply to: Different theme in IEI would seriously suggest fixing the IE bugs before releasing a theme. I know it’s a real pain in the *** but you should.
Forum: Fixing WordPress
In reply to: How to retrieve URL of any post or page with PHP?assuming your id is stored in the variable $id the following should work.
$url = $wpdb->get_results("SELECT guid FROM $wpdb->posts WHERE ID = $id"); echo $url->guid;
Forum: Fixing WordPress
In reply to: Different theme in IEWhy create a whole different theme? Sort out the IE bugs by using a seperate stylesheet for the CSS that is causing problems in IE.
You can do that by using the following code in your header
<!–[if lte IE 6]><style type=”text/css” media=”screen”>@import “<?php bloginfo(‘stylesheet_directory’); ?>/style_ie.css”;</style><![endif]–>where style_ie.css is your IE specific stylesheet. It’s way more simple than making seperate themes.
Forum: Fixing WordPress
In reply to: Searching Content that has been uploadedsearch inside of. Sorry.
Forum: Fixing WordPress
In reply to: Search issueOk figured it out. For some reason there was an tag between the letters.
Forum: Fixing WordPress
In reply to: Search issueI installed search everything, but I also just realised that the page is not a Page but a post. So the behaviour is just erratic.
As you can see if you search for other terms in that post it shows up in the search results.
Forum: Fixing WordPress
In reply to: Search issueI installed search everything, but I also just realised that the page is not a Page but a post. So the behaviour is just erratic.
As you can see if you search for other terms in that post it shows up in the search results.
Forum: Fixing WordPress
In reply to: Search issueHi Mike,
looking up the plugin.
However that’s what I thought as well, that pages are not included in the blog search, however try searching for the word ‘e-news’ which occurs right after ‘sahyadri’ and it returns the page as a result. Which is pretty weird
Forum: Plugins
In reply to: Plugin: search reloadedSearch reloaded does not search pages, it only searches posts.
Forum: Fixing WordPress
In reply to: Moving worries!Sorry! Stupidity occurred.
I forgot to change the permalink structure.
Thank you! Good night!
*falls down the stairs*
Forum: Your WordPress
In reply to: The Human MuseumNeat! However the menu at the bottom is screwed up in Firefox. Seems fine in IE though.