kim09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tiny AvatarsThat code is right though. I use that code in my site too.
Forum: Fixing WordPress
In reply to: Edit text in Text WidgetHey isigidi
You can add a new div in your text, here is one example video how to do it.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]Forum: Fixing WordPress
In reply to: Adding Buttons to blog (Facebook/Twitter/Stumble Upon)Hey chaseblackwell44,
I can load the site just fine. I use a fixed social button plugin.
Goodluck.Forum: Fixing WordPress
In reply to: animated faviconHi userword,
This is my header code regarding displaying the favicon.
<link rel="shortcut icon" href="<?php bloginfo('template_directory');?>/img/favicon.ico" />
Dont forget to upload your favicon in the right path, and change my/img/favicon.ico
to yours 🙂
GoodluckForum: Fixing WordPress
In reply to: Feedburner email subscriptions not workingHey orbital2000
Did you check publicize your Rss feed and choose email subscription option in your feedburner account?[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]
Forum: Fixing WordPress
In reply to: How to set default admin color sceme to blue rather than greyHey nigelt74,
Have you tried in your admin page, then go to Users < Your Profile < Personal options, choose Admin color scheme?
Greetings
Forum: Fixing WordPress
In reply to: How do I set page ?1. To make your blog like a normal website, watch this screencast.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]
2. Explanation about pingback in here.Forum: Fixing WordPress
In reply to: visits …Hey manifestingwithfengshui,
There are many ways, what pcarrel said, is the best. You can also have map visitors plugin, or get feedjit life traffic for your site.
Here is a screencast to paste feedjit life traffic in your site.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]Good luck.
Forum: Fixing WordPress
In reply to: Only Show Gravatar If Commenter Has One–Otherwise Nothing?Hey Terry,
Gravatar from your commenters will only show up, if they have account in Gravatar.com, otherwise it will stay blank, or generated (depends on you- you can change it in admin < settings <discussion < avatar display, show or don’t show then right almost in the bottom of the page, you can choose default gravatar or generated gravatar).
I have a blog and i don’t think my page calls gravatar.com for my commenters’s gravatars.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]
Here is a screencast how to set up your avatar in gravatar.com, and automatically will display whenever you put the same email address as you signed up in Gravatar.com
Greetings.Forum: Fixing WordPress
In reply to: RSS Feed Not Working/BrokenHey Ctsuba2002
I went to side, but unfortunately i couldnt load your RSS link. If the link works, here is screencast about burning your RSS with feedburner.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]Good luck with your new blog 🙂 I am a beginner too. Greetings
Forum: Fixing WordPress
In reply to: Multiple Feeds, One Blog?I checked your site, your rss link is fine, just have to burn it, here is a screencast burning with feedburner and a plugin.
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]
Nice clean blog, you have.Forum: Fixing WordPress
In reply to: php.ini (how to upload file size > 2 MB)Hey tuunup, depends on what file, i have uploaded .mov file and disable the option for downloading it.
Many of my videos I upload via ftp and it’s streaming in my wordpress blog.Forum: Fixing WordPress
In reply to: how to add or allow comments to blog area?Maybe in single.php?
Mine looks like this :<div class="post"> <h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2> <p class="meta">posted by <?php the_author();?> on <?php the_date();?> </p> <?php the_content('read more..');?> </div> <!--end of post---> <?php endwhile; ?> <?php else: ?> <p>Not found, please notify admin</p> <?php endif; ?>Of course the div class will be different in yours, Good luck
Forum: Fixing WordPress
In reply to: Tiny AvatarsHey MsCrow
I think you did it right. 16 = the size you wanna have.
Nice you have it sorted:)
Forum: Fixing WordPress
In reply to: Remove home page from menuHey tnjeff,
Did you change your static page in admin settings?
[link moderated – if you have videos and tutorials that are helpful please submit them to http://wordpress.tv/ and use those links]
Hope this helps. If not change the code in header.php like this:<li class="page_item<?php if (is_home() || is_single()) {echo ' current_page_item';} ?>"><a href="<?php bloginfo('url'); ?>">Home</a> </li> <?php wp_list_pages('sort_column=menu_order&title_li=&depth=1'); ?>