Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with themeSounds like a PHP error maybe. Check your code.
Forum: Fixing WordPress
In reply to: Change gravatarDo you mean your own personal gravatar, or the default gravatar when a commenter doesn’t have a gravatar?
For your personal Gravatar, you need to start an account at Gravatar (it is not linked to your WordPress). As long as you use the same email as your admin account on WordPress, once you upload an image and save, it will appear on your blog.
Phil
Forum: Fixing WordPress
In reply to: Shopping cart for selling downloadsTried WP-ecommerce?
Forum: Fixing WordPress
In reply to: I deleted my account by mistake!Create a new admin user in database (eg, via phpmyadmin). You can then access the back-end and set yourself up again.
Forum: Fixing WordPress
In reply to: I forgot my password requested it and not getting emailIf you have access, log into your database from the host via phpmyadmin for example, navigate to users and check the email against your account to make sure it’s correct and not mis-spelt.
Also check your junk mail as most of mine end up there until I mark them as ‘safe’.
Forum: Fixing WordPress
In reply to: Homepage not showing up correctlyLooks ok to me. =/
Forum: Fixing WordPress
In reply to: Home page SliderIf it is that plugin (using AJAX or other javascript), as you have Contact form 7, why not create a new form and stick it in a sidebar text widget?
Forum: Fixing WordPress
In reply to: Home page SliderI would try deactivating that plugin and test the page.
Forum: Fixing WordPress
In reply to: Home page SliderIt could be a javascript conflict. Have you added in any plugins with a conflicting js library?
Forum: Fixing WordPress
In reply to: Read more link dissappearsI’m assuming you have added the ‘read more’ seperator in the actual post?
Sometimes, category view and blog overview views will automatically add this in over x number of characters. Just make sure the ‘read more’ has been added into the post from the edit post page.
Forum: Fixing WordPress
In reply to: horixontal lineIf you’re talking about your header, then the image is set at 960px, but your main wrapper is 1160px, so won’t fit all the way. The lines in the header are part of the image and not html/css. The image will need to be modified.
I don’t see any other horizontal lines not looking right.
Phil
Forum: Fixing WordPress
In reply to: link keeps reverting back to default after savingClick on the image in the editor once you’ve added it to the post. While it is selected, you can see an option to edit the image. in these settings, you’ll find things like resizing the image, aligning it left, right, center and also adding in a link for the image.
The ‘add link’ will only work either if you have clicked on the image first, or have highlighted text.
Forum: Plugins
In reply to: Need a plugin that puts a software for download in the wordpress page!!Have you tried Download Manager Or Another Download Manager?
There’s lots of plugins that do this, from free to paid. You need to search through them to find one that fits your requirements.
Forum: Fixing WordPress
In reply to: No Pics Without CaptionNever seen this before. What theme are you using?
Forum: Fixing WordPress
In reply to: Models Won't OrganizeI would use an image resizer like timthumb or equivalent to take snippets of the images as thumbnails of a set size. You could then arrange them nicely in a grid and order them with something like the following:
global $query_string; query_posts( $query_string . '&order=ASC' );Hope this helps.