Joshua
Forum Replies Created
-
I can personally vouch for W3Total Cache, I would say the people that say it’s broken didn’t configure it properly.
this is beyond the scope of my coding skills as good excuse as any to learn how to code.
Seriously dude, it’s you’re cache settings.
Plug in W3 Total Cache and you’ll be sorted.
You may have your cache settings set to not cache.
It will always have to flash white as what you are seeing there is the browser loading the page in it’s blankest state, which is a blank white screen.
Forum: Fixing WordPress
In reply to: Redirect Non Existent URLs to front page?For a 404 redirect try this. If you want the other it’s called a 301 redirect so just pray to Supreme Overlord Google that he gives you the answers you seek.
Forum: Fixing WordPress
In reply to: How hard would this be to do?relatively easy.
the main key is to make sure your WP-Config file has the new info.
i have no experience with buddy press though…
Forum: Fixing WordPress
In reply to: Website running really slow!I found this link a bit ago. It tries to help you minimise http requests. You should probably ignore the make page HTML though…
Forum: Fixing WordPress
In reply to: can no longer view wp siteAt the risk of being Captain Obvious, do you have the latest version of flash?
A link would also be nice…
Forum: Fixing WordPress
In reply to: How to add phpBB forum to WordPress site?After a quick search consulting Supreme Overlord Google I found this plugin which should meet your needs.
Forum: Fixing WordPress
In reply to: Why does google hate me?I would suggest it is a problem with your seo plugin. try uninstalling it fully, check you have the latest version, and reinstalling it again.
Please note that it can take weeks, even months, for Google to reindex your site so it is a very hard thing to troubleshoot.
Forum: Themes and Templates
In reply to: Centering Main Title Image?Hey, That is a really simple request. If your theme offers custom css just add this to the file
#header {text-align: center;}if it doesn’t you will need to find the
#headerelement and addtext-align: center;on a new row but still in the curly braces.Forum: Themes and Templates
In reply to: Menu Rollovers with multiple images using CSSare you trying to use a completly different image for each one, like a blue circle with “home” written on it and a green square with “about us” written on it or all of them green squares just different text. If the latter is the case the css is rather easy, if the former you will need to do it with every item a different class.
Forum: Fixing WordPress
In reply to: HTML home pageif by HTML you mean static, that is easily fixed by creating the page then in Settings -> Reading you change the top option from Posts to Static Page.
It is also good practice to create a new page for blogs as well…
If by an actual HTML page you may need to move your WP install to a sub directory or mess about with CNAMES. There is a wealth of knowledge in the codex on both issues.
Forum: Fixing WordPress
In reply to: Accesing the dashboard or Admin areaeasily fixed go here http://money-socrates.com/jobs/wp-login.php.
don’t forget to search google and/or the codex first as this is a common problem
you should be able to do so with a “read more” link.
everything above the link is your “teaser” and *should* be shown where you say. If you want more control over it be sure to check this out Customizing_the_Read_More
Forum: Themes and Templates
In reply to: Menu Rollovers with multiple images using CSSyou should be able to do something like this
#ul-id li a:hover{ background-image: url('link'); }most menu’s in wordpress have a unique id for the ul, if not find the closest div and sub that.