Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I changed admin-function.php file and can't log in or do anything.If you’re running WordPress 3.5, download it from http://wordpress.org/latest.zip, once download finished, unzip the file, then upload/overwrite the file …/wp-admin/admin-functions.php
If you do not use WordPress 3.5, go here http://wordpress.org/download/release-archive/ to download your current WordPress Release.
Forum: Fixing WordPress
In reply to: Really broke it now while changing the index.php to the rootYou’re welcome.
Forum: Fixing WordPress
In reply to: Really broke it now while changing the index.php to the rootHa ! This doesn’t surprise me.
You should read this before to do this.
Giving WordPress Its Own DirectoryNow, to solve the issue, you have to connect to your database directly to change the row Option name site URL in the wp_options table to change the WordPress installation folder. You should see “http://zazzle.me.uk/zazzle”, so replace by http://zazzle.me.uk/ will solve the issue.
But at the end, do not forget to move the entire WordPress core files in the root directory of http://zazzle.me.uk/.Forum: Fixing WordPress
In reply to: Limit post title length (contains special characters)OK, so I don’t know how to fix this.
Sorry.Forum: Fixing WordPress
In reply to: Remove 'This entry was posted in'Hi,
Easy (I think)
You’ll need a text editor (like Notepad++).
Download your entire theme folder in your PC/MAC, then, using the text editor, make a search (Search and Find in files) with the word “entry-meta” and/or “This entry was” in the whole theme directory.
Then you just have to find where the text “This entry was posted in” is, remove the entire PHP code that retrieve the post DATE/TIME, save file(s), upload files to your server.
That’s it.Forum: Fixing WordPress
In reply to: Limit post title length (contains special characters)And did your try this solution ?
How to stop WP from replacing special charactersForum: Fixing WordPress
In reply to: Redirect user if there's only 1 post in category/tag page ?I’m only know this solution me too.
Forum: Fixing WordPress
In reply to: Limit post title length (contains special characters)After you tried the solutions you found on the web, are your template have been converted to UTF-8 format ?
Forum: Fixing WordPress
In reply to: Home page taking too much time to openCool
You’re welcome !Forum: Fixing WordPress
In reply to: Home page taking too much time to openDid you test to deactivate some plugins to identify the cause of these slowness ?
Forum: Fixing WordPress
In reply to: Remove hover colorHi,
In your style sheet, look for the CSS class :
.entry-header .comments-link a:hover
With the parameter :
background-color: #1288d3;If you remove completely the line :
background-color: #1288d3;
when the mouse fly over the link, the link style will not change.Cheers
Forum: Fixing WordPress
In reply to: Remove Page No-FollowThere is several ways to block robots to follow/index content…
As you already checked via the plugins, check the footprint of nofollow attribute in your pages.
Go to your page with your browser, then display the source code of the page and look for something like that :... <meta name="robots" content="noindex, nofollow"> ...or
... <meta name="robots" content="nofollow"> ...or
... <meta name="robots" content="noindex"> ...If you find on of this line of code, it could be static text in your theme’s template (so you’ll have to change manually by editing PHP files) or a plugin that put this automaticaly.
Forum: Fixing WordPress
In reply to: Home page taking too much time to openWith Fiddler (web debugger), I saw that there is a lot of requests with domain lookup, this may render your website very slow… especially if these websites are slow too !
Click here to see the each request with hosts :
http://pastebin.com/pQdmCAphForum: Fixing WordPress
In reply to: Home page taking too much time to openHi,
I did some tests of access to your home page, on each test, it shows different results.
And between the Home page and your posts, I saw only 1 difference, the featured menu at the top.
And on the Home page, there is the list of your posts, this could execute too many queries when you’re loading the Home page.