Chelsea Otakan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why Do My Comment Forms Change for No Reason?If you’re logged in, the Name, Email, and Website fields don’t show up and are autopopulated with your user profile information.
Typically, themes will display placeholder text that says something like “You’re logged in as [Username].” instead of the normal fields.
If you’re not logged in, the normal fields should appear.
Forum: Fixing WordPress
In reply to: jquery image hover homepage loopTook me a bit to find out how to do this when I was starting out with jQuery too.
Use the $(this) identifier to specify the specific element the actions are happening with, then use .find or .children to find child elements within it.
Try this javascript:
jQuery(document).ready(function($){ $('.slidethumb').hover(function() { $(this).find('img').stop(true,true).fadeTo(400, 0.45); $(this).find('.slidedesc').stop(true,true).fadeIn(400); }, function() { $(this).find('.slidethumb img').stop(true,true).fadeTo(400, 1); $(this).find('.slidedesc').stop(true,true).fadeOut(400); }); });$(this) will perform the action on the instance of .slidethumb the user is currently interacting with.
Also, use the code button in the Message box to make code a little more readable :]
Let me know if this works for you!
Forum: Fixing WordPress
In reply to: Pilcrow theme custom headerLinks to both would be nice so we can get a more specific idea of what’s happening :]
Forum: Fixing WordPress
In reply to: Image Sprites for navigation – one link vanished!Hi! It looks like the CSS on that nav item still has a background URL of your local environment: http://localhost/wordpress/wp-content/uploads/2011/03/full-nav-all.png
I’m guessing you missed a line of CSS while porting everything over :]
Do a search and replace for http://localhost/wordpress/ to http://www.sneakymedia.co.uk/ in your CSS and you should be good to go.
Forum: Requests and Feedback
In reply to: What Should 2011 Hold for WordPress?+++ for progressive enhancement HTML5/CSS3 and optimization/streamlining
+++ for better mobile versions of the admin interface– Archive/wp_get_archives parameter for custom post types.
– Breadcrumb template tag that uses page hierarchy OR nav menu hierarchy
– Further development of the Nav Menu systemHurray!
Forum: Fixing WordPress
In reply to: Permalinks no longer workThanks! My host messed with the .htaccess file, but I’ve fixed it. Also, thanks for the tip on using the forums.
Forum: Fixing WordPress
In reply to: Permalinks no longer workHas anyone else had this problem as well?
Forum: Fixing WordPress
In reply to: Link to comment pop up from single.phpi was having trouble with this too, but I found the answer here: http://codex.wordpress.org/User:alphaoide/wp_powered_photoblog#Adding_Comments_and_Metas
in short, just add
<?php $wp_query->is_single = false; ?>before your comments pop up link on your single.php template