sjbuckley
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: lessphp fatal error: load error: failed to findThank you lilredc5, you just saved me precious time on a project!
Forum: Fixing WordPress
In reply to: Disable "required" in one of the comment form fieldsThank you for your response Douglas. I am aware of the “Comment author must fill out name and email” option, but it gives the choice between either having both name and email required, or both not required. What i want is to have the name required but not the email.
Any ideas?
Forum: Fixing WordPress
In reply to: dealing with Internet Explorer issuesThank you for your help. After spending a good 10 hrs straight on the computer, i fixed all the bugs.
You can see the result: Planète Média(TIC)
Forum: Fixing WordPress
In reply to: 2.9.2 update issuesI just found the fix in the StudioPress forum. The post_templates.php of my StudioPress theme simply needed to be updated first.
Thank you!
Forum: Fixing WordPress
In reply to: Exclude categories from post category listingThank you so much for your reply Michael! But i solved my problem about twenty minutes ago with help from the Studiopress forum. For reference purposes, here is what i changed:
I was able to get rid of the two “administrative” categories by using the exclude and offset commands. So here is how the three sections on my home page are presented:
Latest post excluding video category
<?php $recent = new WP_Query(“cat=-34&showposts=1”); while($recent->have_posts()) : $recent->the_post();?>Latest video
<?php $recent = new WP_Query(“cat=34&showposts=1”); while($recent->have_posts()) : $recent->the_post();?>All but the latest post and the video category
<?php $recent = new WP_Query(“cat=-34&offset=1&showposts=15”); while($recent->have_posts()) : $recent->the_post();?>Take care!
Forum: Fixing WordPress
In reply to: Browser compatibility issue – IEOne more thing, which is really baffling me…how can the space between my post title and the posts themselves differ from post to post?? If they all obey the same CSS rule, how is that possible?
It’s the same on my home page and on the single post pages. The title to every second post is higher than the previous one…
Forum: Fixing WordPress
In reply to: Browser compatibility issue – IEOk. So i fixed the CSS unclosed tag and checked out the report from my code validation. Unfortunately, i have no idea what to do about it.
Most of the errors seem to come from the formatting of the articles, yet the articles themselves look fine in Explorer. Plus i can edit php and css files in WordPress, but can i edit html the way it appears in the validation results?
My two biggest issues with Explorer right now is the displaying of the bullet jpg image in the sidebar list (which shows up in all browsers except for Explorer) and the H2 heading of the single article page, which Explorer really screws up, as you can see.
Forum: Fixing WordPress
In reply to: Browser compatibility issue – IEThank you for your quick reply! That’s quite a lot of errors in my site!
I guess i need to go through them and fix them one by one? What other consequences could these errors have?
Thanks!