Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post images not showing up on "home page post"Permissions on the uploads folder?
Forum: Fixing WordPress
In reply to: Post images not showing up on "home page post"Have you contacted the theme developers?
Forum: Fixing WordPress
In reply to: Restore site with xml exported file and no sql databaseIt’s always advisable to do a full MySQL backup as well as data export from WP admin. I always like both (in different formats). Or you could always try http://wordpress.org/extend/plugins/wp-db-backup/
Forum: Fixing WordPress
In reply to: turning off comments on images?In the ‘Post Edit’ page, click on an image within the post, edit it and you’ll see a setting under ‘link URL’.
I always remove the default in there, so it’s left blank. Save changes, update post and voila, the image is not longer clickable.
Phil
Forum: Fixing WordPress
In reply to: CSS not loading unless logged in as admin.Your CSS is apparently a cached version. Looking at the source (in the header.php), I can see:
<link rel="stylesheet" type="text/css" href="http://patrickropars.com/wp-content/w3tc/min/31ed7c49897f3726b92282c1d024fc42.-1410095554.css" media="all" />To fix, replace the call for the stylesheet with:
<link rel="stylesheet" type="text/css" href="http://www.patrickropars.com/wp-content/themes/patrickropars/style.css" media="all" />When I add this in to your site via firebug, it fixes the CSS issue.
Hope this helps,
Phil
Forum: Fixing WordPress
In reply to: Access WordPress Post by IDHave you set custom permalinks?
Forum: Fixing WordPress
In reply to: Spam even though no registered users and comments disabledInstall Akismet and activate it. Really helps to filter out spam.
Spam can be generated through comments, contact forms, tags, archives etc. You name it, they can spam it.
Forum: Fixing WordPress
In reply to: Text size changed on wordpress dashboard, website, everythingLooks fine to me.
Are you using a laptop that can increase/decrease the zoom from the touchpad by any chance?
I’ve done this a couple of times myself.
Forum: Fixing WordPress
In reply to: Add an Image link over the Banner helpHi Andrew,
The blog button can be achieved by going adding in the following HTML and CSS:
HTML (in header.php), directly AFTER <div id=”masthead”>:
<div class="headerblogbutton"> <a href="http://warriormoms.net/academy-2/warrior-wisdom"><img src="http://warriormoms.net/wp-content/uploads/2011/01/BLOG-Button.png" /></a> </div>CSS:
Add both these to your stylesheet:
#masthead { position: relative; } .headerblogbutton { position: absolute; right: 0; bottom: 22px; }Above, you can see we gave the button an absolute position (which only works if we made the #masthead relatively positioned).
You see a white outline around the button, so I would swap it to a transparent png or gif to get rid of it.
Adding the full verses on hover will be a little more work than just an alt tag as they are both part of the background image. Ideally, you’ll need to split these up in their own elements for them to display alternative content when hovered. If you do this, don’t use alt tags (as these are not visible to humans), but use ‘title’ instead. Another way would be to bring in some javascript or a html scroller or something for the hover effect.
Hope this helps.
Phil
Forum: Fixing WordPress
In reply to: My wordpress site has gotten hacked 4 times nowI would check your .htaccess file.
Otherwise, I would follow rev’s reading list.
Forum: Fixing WordPress
In reply to: Unable to upgrade – Fatal ErrorIt means upgrading failed. Try upgrading manually.
Forum: Fixing WordPress
In reply to: Number of queries and memory usedDepends what you have on the site, but doesn’t look miles off.
Forum: Fixing WordPress
In reply to: Dead Contact LinkYou mean in ‘Comments’?
You can go to ‘admin’ –> ‘comments’
Then select all comments to delete and click ‘bulk actions’ to mark as spam.
You may want to get Akismet up and running on the site to prevent future spam, and also go to ‘Admin’ –> ‘Settings’ –> ‘Discussion’
Halfway down under ‘Comment Moderation’, I always change to 1 link as spammers always have links.
Forum: Fixing WordPress
In reply to: Database Help – Where is the nav menu stored?Navigation menu’s are pulled from page and category names.