Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to comment out background image in Internet ExplorerCool, mark this as resolved if you’re happy the problem is fixed. It’s the drop down in the right sidebar of this thread.
Good luck in the future!
Forum: Fixing WordPress
In reply to: Loading gif on every pageDid you follow the steps in the tutorial correctly?
Could you pass on the link for your site?
Forum: Fixing WordPress
In reply to: How to comment out background image in Internet ExplorerTry your header.php in your theme.
Ideally put it directly after this line:
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?> " type="text/css" />Create ie.css in the same directory where style.css exists.
Forum: Fixing WordPress
In reply to: How to comment out background image in Internet ExplorerHere is how to target all versions of IE with Conditional Comments (only recognised by IE)
<!--[if IE ]> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie.css" type="text/css" media="screen" /> <![endif]-->You could create an ie.css and add any relevant CSS you have there.
Hope that fixes your issue.
You will need to copy over your content, and your theme, and then get GoDaddy to re-point your domain to your newly hosted WordPress.com blog. You’ll need to raise a support ticket with them for this.
Do you want to move to a WordPress.com hosted blog?
Follow the guide below.
http://en.support.wordpress.com/moving-a-blog/#moving-from-wordpress-org
Does that help?
Forum: Fixing WordPress
In reply to: Header image not showing anymoreDia Dhuit,
It’s saying that the following file doesn’t exist on the server. Check to see if it’s there in the folder. If not, check the file permission, sometimes if you’ve moved files, the permissions are sometimes changed so that they are not visible on the web server.
http://www.blarneyphotographyclub.com/wp-content/uploads/2011/09/banner-head-1-copy1.gif
Can you create that file? Manually and put it in that folder above?
Hope that’s it and it helps.
Harry
lbfightsms,
Leave the Nameservers ALONE. Do not try and update these, as I’m not sure you fully understand their purpose.
They are required to link your domain name to your hosting. They are correct, don’t touch them. .
If you have issues with your domain name, contact your hosting. This is a non-Wordpress issue.
Regards,
HarForum: Fixing WordPress
In reply to: Inserting images: problem with click to enlargeSee my previous comment, I have taken a look through your code and that’s the only difference I can make out.
Find the first image and see how that was added.
Ignore the winter writer suggestion.
Re-post this Query in the Plugins and Hacks Forum, as this is where the Plugin Developers will most likely see your issue. Follow the direction in the info post, by for example, including the name of the plugin between [].
Also, I’m currently working on a shop. When I get the problem figured out, I’ll post the solution if someone from the Dev team doesn’t get back to you before I do.
Forum: Fixing WordPress
In reply to: Function Reference/wp registerEither:
<?php if ( is_user_logged_in() ) { global $display_name; get_currentuserinfo(); echo 'Welcome' . $display_name; } else { wp_register(); } ?>Or:
<?php if ( is_user_logged_in() ) { global $current_user; get_currentuserinfo(); echo 'Welcome ' . $current_user->display_name . "\n"; } else { wp_register(); } ?>If you use $current_user as the global variable, you can access all the info using the methods (i.e. user_login, display_name below this).
Other than that you can declare the globals individually as you have in your example, but they must be the same as the ones available in the currentuserinfo function.
It explains this on this link which I posted previously. Spend sometime reading and understanding the differences between the two explanations.
http://codex.wordpress.org/Function_Reference/get_currentuserinfo#Default_Usage
Forum: Fixing WordPress
In reply to: Function Reference/wp registerThese will help:
http://codex.wordpress.org/Function_Reference/is_user_logged_in
To get the user details,
http://codex.wordpress.org/Function_Reference/get_currentuserinfo
Forum: Fixing WordPress
In reply to: Moving Date above TitleBrilliant.
No worries, all the best. Mark as resolved if you’re happy this is fixed.
Forum: Fixing WordPress
In reply to: Moving Date above TitleHi Samara,
In a previous thread I helped you edit the following function:
<?php brunelleschi_posted_on(); ?>Just change the placement of this call above that of your title.
Hope this helps.
Hi radiofranky,
There is http://codex.wordpress.org/Function_Reference/wp_get_archives in which you can specify ‘yearly’
I also wrote a function to give better control and to display it in a different way, as I wanted to create an accordion menu of posts by year (so I could show the latest year, and hide the rest but allow them to slide out on click). As well highlighting and showing posts from only the current year.
I pasted the code here http://pastebin.com/41QLxMT0 for anyone to use. Just place it in your functions.php file in your theme.
To invoke use the following:
edge_subcat_posts_monthly($post->ID, 24);Where $post->ID is the current post (I use this as I put this in the sidebar of single posts), and ’24’ in this instance is the category.
Hope this helps out.
Har