Phil
Forum Replies Created
-
How come you didn’t just use the latest version of timthumb from the developer?
It has resolved the security issue and has been re-written to accommodate that.
I have attached a featured image which works, but we have thousands of posts and it is not practical to set a featured image on each one historically. Also, we have plenty of authors who submit posts without featured images – as previously the first image posted gets resized.
I also notice that the thumbnail I just reset gets squashed – it doesn’t keep the correct dimensions – unprofessional-looking, thus rendering this almost unusable unless theres a fix… =/
Forum: Fixing WordPress
In reply to: Very New-Menu ProblemsIS this WordPress.com or WordPress.org you set up?
This forum is for self-hosted WordPress sites (on your own server.)
There are some big differences between the two, so if it’s WordPress.com you signed up to, the forum is here: http://en.forums.wordpress.com/
When you register a new WordPress site on your own server, you register a username with your email address, so no need to log in at all.
Forum: Fixing WordPress
In reply to: Very New-Menu ProblemsPages are static and don’t hold posts (generally). What you are probably wanting is Categories (under ‘posts’ in side menu). You can arrange parent categories and put posts in there.
Forum: Fixing WordPress
In reply to: Very New-Menu ProblemsGo to ‘Appearance’, then ‘Widgets’ and put what you want in there instead of whats there at the moment.
The things you see are the default items WordPress puts in there when you haven’t selected any widgets.
The email thing: Not sure what you mean? You used an email address to register with? You just check that email account.
Phil
Forum: Fixing WordPress
In reply to: How to change the WordPress login page logo linkAll you need to to do is save an image called wp-logo.png and replace the existing in wp-admin/images.
You’ll need to replace it after every update.
Forum: Fixing WordPress
In reply to: Leave A Comment Doesn't WorkCheck that comments are allowed in the WP Settings.
If already enabled, check posts to see if comments are allowed on the post/page.
Then, I’d check comments.php in the theme to ensure the correct code is there.
Forum: Fixing WordPress
In reply to: TemplateUpload a new theme direct from wordpress back-end. Once selected, you can switch themes at the click of a button!
Forum: Fixing WordPress
In reply to: Using Javascript in a pageHave you tried this in a blank html page? Does it work there?
If so, there could be Javascript scripts used in the theme that cause conflicts. If this is the case, look into ‘Javascript no conflict’ in Google for resetting the function $ before the new script gets called.
Forum: Fixing WordPress
In reply to: Font size in Twenty-Ten ThemeHit Ctrl+F5 to refresh your browser cache.
Adding the above, changes your site for me fine.
Forum: Fixing WordPress
In reply to: Font size in Twenty-Ten ThemeAdd this to your style.css:
Either at:
#primary – (line 1206 of style.css)
font-size: 12px;Or, paste into the bottom of your CSS file:
#primary a { font-size: 12px; }Change to whatever you want.
Forum: Fixing WordPress
In reply to: Font size in Twenty-Ten ThemeHi Patti,
Which text are you trying to adjust? Sidebar? Main content?
Forum: Fixing WordPress
In reply to: www or without w,wwyou’d want to add something like this into a .htaccess file. If it doesn’t exist – create one in notepad but save as .htaccess (not .htaccess.txt).
RewriteEngine on RewriteCond %{HTTP_HOST} !^www.yourdomain.com$ RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301]Obviously change ‘yourdomain’ to whatever it is.
Forum: Fixing WordPress
In reply to: Content and Sidebar Stuck in Header?It may be that the div starts in header.php and ends at the top of sidebar.php maybe – it depends on how the theme has been constructed.
Forum: Fixing WordPress
In reply to: Home page as "page"In admin:
‘Settings’ –> ‘Reading’
You’ll see option at top to use a page as your homepage as a static page. This allows you to use a page as the homepage of your site.