artistwantab
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tranferring Host…errorI am not argue and I apologize if you took it that way. I thought you miss understood because said “When it is a file error you should never mess with the database!”
I was only explaining that uploading the database was a necessity because I was transferring hosts.
To answer your questions…yes and yes
Forum: Fixing WordPress
In reply to: Tranferring Host…errorThe tutorial I read said when transferring host I should use all my existing wordpress files.
I uploaded all my files to the new host.
Then I uploaded th database and tested received the error.
I then re-uploaded all the files…tested again…re-uploaded database…tested again.
Same error.
Forum: Fixing WordPress
In reply to: Tranferring Host…errorI tried that but with no success. I uploaded the database twice also.
Forum: Fixing WordPress
In reply to: Tranferring Host…erroranyone?
Forum: Fixing WordPress
In reply to: How do I target my Text Widgets with my CSS Stlye Sheetthank you….fixed
Forum: Fixing WordPress
In reply to: How do I target my Text Widgets with my CSS Stlye SheetSorry, Ignore that…FIXED…I only include that so I can create the post in dreamweaver with the styles and then paste the code onto the dashboard…I must have forgotten to remove the attached styles sheet.
I am sorry but I am not the most advanced coder. I figured everything else out but for some reason I just cant find how to target this ONE widget?
Forum: Fixing WordPress
In reply to: How do I target my Text Widgets with my CSS Stlye SheetForum: Fixing WordPress
In reply to: Widgetizing Theme—HelpI don’t have a functions.php in my themes directory?
Any help?
Forum: Fixing WordPress
In reply to: Moving links sidebar to the bottom…Got it!
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressThank you, I got it!
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressI am still having trouble figuring out where to put it.
Thanks for the help.
<p class="post-date"><?php the_time('D j M Y'); ?></p> <div class="post-info"><h2 class="post-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2> Posted by <?php the_author(); ?> under <?php the_category(' , '); ?><?php edit_post_link('(edit this)'); ?><br/><?php comments_popup_link('No Comments', '1 Comment', '[%] Comments'); ?> </div> <div class="post-content"> <?php the_content(); ?> <p class="post-info"> <?php wp_link_pages(); ?> </p> <!-- <?php trackback_rdf(); ?> --> <div class="post-footer"> </div> </div>
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressI moved things around and it doesn’t change where the comment is located. Am I missing something.
<body> <div id="rap"> <?php get_header(); ?> <div id="main"> <div id="content"> <?php if ($posts) : foreach ($posts as $post) : start_wp(); ?> <div class="post"> <?php require('post.php'); ?> <?php comments_template(); // Get wp-comments.php template ?> </div> <?php endforeach; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> <p align="center"><?php posts_nav_link() ?></p> </div>
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressJust noticed your post after I replied. Thank you.
Let me give it a try and I will post my results here.
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressI found a plug in for the email part.
Just need to know about the comment part.
Forum: Fixing WordPress
In reply to: Question about comments and forwarding blog to an email addressMaybe I am not too clear.
In most blogs the link for commenting is underneath the post.
In mine the link is at the top of the post. I would like to move comment link to the bottom.
Also, on some blogs you can also email the post to a friend from the blog.
Can someone help me with this please?