jonmcgivern
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Maybe i’ll just use, BackWPup for back-up. 🙂
Forum: Fixing WordPress
In reply to: Blog Comment Not Respondingand this is my comments.php
<?php if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if (post_password_required()) { art_post_wrapper(array('content' => '<p class="nocomments">' . __('This post is password protected. Enter the password to view any comments.', THEME_NS) . '</p>')); return; } if (have_comments()){ ob_start(); printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), THEME_NS ), number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' ); art_post_wrapper(array('content'=>'<h4 id="comments">' .ob_get_clean() . '</h4>')); $prev_link = get_previous_comments_link(__('Newer Comments <span class="meta-nav">→</span>', THEME_NS)); $next_link = get_next_comments_link(__('<span class="meta-nav">←</span> Older Comments', THEME_NS)); art_pagination(array('prev_link' => $prev_link, 'next_link' => $next_link)); echo '<ul id="comments-list">'; wp_list_comments('type=all&callback=art_comment'); echo ''; art_pagination(array('prev_link' => $prev_link, 'next_link' => $next_link)); } elseif('open' != $post->comment_status && !is_page()) { art_post_wrapper(array('content' => '<p class="nocomments">' . __('Comments are closed.', THEME_NS) .'</p>')); } if (function_exists('comment_form')){ ob_start(); comment_form(); art_post_wrapper(array('content' => str_replace(array(' id="respond"', 'type="submit"'), array('', 'class="art-button" type="submit"'), ob_get_clean()), 'id' => 'respond')); return; } if ('open' == $post->comment_status) { ob_start(); ?> <h3 id="comments-title"><?php comment_form_title( __('Leave a Reply', THEME_NS), __('Leave a Reply to %s', THEME_NS) ); ?></h3> <div class="cancel-comment-reply"><small><?php cancel_comment_reply_link(); ?></small></div> <?php if ( get_option('comment_registration') && !$user_ID ) : ?> <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', THEME_NS), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p> <?php else : ?> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> <?php if ( $user_ID ) : ?> <p><?php printf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>', THEME_NS), admin_url( 'profile.php' ), $user_identity, wp_logout_url(get_permalink())); ?></p> <?php else : ?> <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" /> <label for="author"><small><?php _e('Name', THEME_NS); ?> <?php if ($req) _e("(required)", THEME_NS); ?></small></label></p> <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" /> <label for="email"><small><?php _e('Your email address will not be published.', THEME_NS); ?> <?php if ($req) _e("(required)", THEME_NS); ?></small></label></p> <?php endif; ?> <!--<p><small><?php printf( __( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes: %s' ), ' <code>' . allowed_tags() . '</code>' ) ?></small></p>--> <p><textarea name="comment" id="comment" cols="40" rows="10" tabindex="4"></textarea></p> <p> <span class="art-button-wrapper"><span class="art-button-l"> </span><span class="art-button-r"> </span> <input class="art-button" type="submit" name="submit" tabindex="5" value="<?php _e('Submit Comment', THEME_NS); ?>" /> </span> <?php comment_id_fields(); ?> </p> <?php do_action('comment_form', $post->ID); ?> </form> <?php endif;?> <?php art_post_wrapper(array('content' => ob_get_clean(), 'id' => 'respond')); }ALL HELP APPRECIATED 🙂
Forum: Fixing WordPress
In reply to: Blog Comment Not RespondingThis is the code of my single post.php
[please read http://codex.ww.wp.xz.cn/Forum_Welcome#Posting_Code ]
<?php get_header(); ?> <div class="art-content-layout"> <div class="art-content-layout-row"> <div class="art-layout-cell art-sidebar1"> <?php get_sidebar('default'); ?> <div class="cleared"></div> </div> <div class="art-layout-cell art-content"> <?php get_sidebar('top'); global $post; if (have_posts()){ if (art_get_option('art_single_pagination')) { // previous_post_link | next_post_link art_pagination(array('next_link' => art_get_previous_post_link('« %link'),'prev_link' => art_get_next_post_link('%link »'))); } while (have_posts()) { the_post(); art_post_wrapper( array( 'id' => art_get_post_id(), 'class' => art_get_post_class(), //'thumbnail' => art_get_post_thumbnail(), 'title' => art_get_meta_option($post->ID, 'art_show_post_title') ? get_the_title() : '', 'before' => art_get_metadata_icons('date,author,edit', 'header'), 'content' => art_get_content(), // 'content' => 'My post content', 'after' => art_get_metadata_icons('category,tag', 'footer') ) ); comments_template(); } } else { art_post_wrapper( array( 'title' => __('Not Found', THEME_NS), 'content' => '<p class="center">' .__( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', THEME_NS) . '</p>' . "\r\n" . art_get_search() ) ); } get_sidebar('bottom'); ?> <div class="cleared"></div> </div> <div class="art-layout-cell art-sidebar2"> <?php get_sidebar('secondary'); ?> <div class="cleared"></div> </div> </div> </div> <div class="cleared"></div> <?php get_footer();Forum: Fixing WordPress
In reply to: Blog Comment Not Responding‘Artisteer’ is a theme generator, if you dont know what artisteer please look it up.
I dont think it would be very different from any other theme, so i thought i’d try here first. Any HTML coding thoughts would be great?
Viewing 4 replies - 1 through 4 (of 4 total)