kim09
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to convert my existing website to wordpress?Hey Bryan Poh,
I have created a template for my blog, http://codex.wordpress.org/Template_Hierarchy helped me alot.
First, you create html template, and replace the static code with wordpress codex.
Good luck!
Forum: Fixing WordPress
In reply to: Cannot see wp logo on login page as well as inside dashboardsagargholap,
So glad it’s resolved, thumbs up!
And good luck with your new blog 🙂Forum: Everything else WordPress
In reply to: WordPress Forum replies not showing upOh I am so glad to read this post, i thought i was the only one who is filtered 🙁 i am lazy to comment here because my replies sometimes delayed for 6/7 hours 🙁
Hey jothiek,
Congrats that you site is showing. That happened to my blog too a few weeks ago, because i changed the permalink, my site was completely gone from google. By fixing the error pages and creating backlinks, it really helps to be indexed again. I like your blog layout, it’s nice clean:)
Forum: Fixing WordPress
In reply to: Link WidgetHey equinestaff,
Did you try in Admin< Links < Link Categories? there you can create “links” and put the links into that category,
Hope it will helpForum: Fixing WordPress
In reply to: Cannot see wp logo on login page as well as inside dashboardHey sagargholap,
I would try to re-install by uplading fresh wordpress files from wordpress.org and see what will happen.
GreetingsForum: Fixing WordPress
In reply to: Admin accessHello syl85
I guess you can upload your theme via FTP (cpanel) but then you need to activate it via admin page. If you lost password, you might want to click “lost password”. Or resetting pasword in database if you need to.Forum: Themes and Templates
In reply to: How to integrate in my custom designI think you need php knowlegde about this, and check wordpress codex.
GoodluckForum: Fixing WordPress
In reply to: Is this a bug ???Hey boblebad
Did you activate Akismet? it’s cool plugin to filters spams
Forum: Fixing WordPress
In reply to: Need a new passwordDid it not work if you click “forgot password” button? you can actually reset your password in your database
Forum: Fixing WordPress
In reply to: Someone registered as a user on my wordpress blog – possible hacker?Hi guys,
It happened with my blog too, but the username and email adrresses were more random, so i disable user registration as jensmith2 said.Forum: Fixing WordPress
In reply to: comments box in the wayHey mmunsee,
It’s in page.php. try to remove this line of code:
<?php if (function_exists('wp_list_comments')) { comments_template('', true); } else { comments_template(); } ?>Hope that helps.
Forum: Themes and Templates
In reply to: Static home page on SimpleX themeHey copperblade
Had that problem in my blog too, but i removed this code:
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
and the sticky home was gone.
it’s usually in nav div.Forum: Fixing WordPress
In reply to: Repeat of words from navigation barHey x-tremehealth,
It is usually in page.php. The code looks like this:
<h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2>
Try to remove that code, it is under this line: <?php if(have_posts()) : while(have_posts()) : the_post();?>Forum: Themes and Templates
In reply to: Fixing My BorderHey mattvereb,
In your site, you can add this code in your style.css
.sidebars{border: 2px solid red;}
just for example, that’s a border for your sidebar, you can experiment the color. Firebug plugin from firefox might help tooGreetings.