georgeliebau
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: tables misalignedHelps alot! Thank you, Jose! I really appreciate it.
Forum: Fixing WordPress
In reply to: banner image showing all black as if not thereThank you so much, Richard!!
Found there to be a side effects from that code. Is there a way to modify that style.CSS code to only effect the page-blank-events.php template?
that seemed to work perfectly! Thank you alchymyth!! Much appreciated!
the page is live that is experiencing the problem.
http://www.gobrightwing.com/kindness-forward
I have the comments set to only display when approved. but if you fill out a test comment, you see how the display is messed up when it shows it along with “Your comment is awaiting moderation”
I tried using the inspect element tool on the page but can’t quite seem to see how to fix the problem.
below is the comments.php file for our theme. a screenshot of the issue is
http://www.gobrightwing.com/wp-content/uploads/2013/04/commentsissue.jpg
The comment is displaying overtop of the form and the form is somehow partially shown to the right of the form. Please note that this doesn’t happen on our blog page that uses the same comments form.
<?php /** * The template for displaying Comments. * * The area of the page that contains both current comments * and the comment form. The actual display of comments is * handled by a callback to starkers_comment which is * located in the functions.php file. * * @package WordPress * @subpackage Starkers * @since Starkers HTML5 3.0 */ ?> <?php if ( post_password_required() ) : ?> <p><?php _e( 'This post is password protected. Enter the password to view any comments.', 'starkers' ); ?></p> <?php return; endif; ?> <?php // You can start editing here -- including this comment! ?> <?php if ( have_comments() ) : ?> <?php /* STARKERS NOTE: The following h3 id is left intact so that comments can be referenced on the page */ ?> <h3 id="comments-title"><?php printf( _n( '1 Comment', '%1$s Comments', get_comments_number(), 'starkers' ), number_format_i18n( get_comments_number() ), '' . get_the_title() . '' ); ?></h3> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> <nav> <?php previous_comments_link( __( '← Older Comments', 'starkers' ) ); ?> <?php next_comments_link( __( 'Newer Comments →', 'starkers' ) ); ?> </nav> <?php endif; // check for comment navigation ?> <?php wp_list_comments( array( 'style' => 'div', 'callback' => 'starkers_comment', 'end-callback' => 'starkers_comment_close' ) ); ?> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?> <nav> <?php previous_comments_link( __( '← Older Comments', 'starkers' ) ); ?> <?php next_comments_link( __( 'Newer Comments →', 'starkers' ) ); ?> </nav> <?php endif; // check for comment navigation ?> <?php else : // or, if we don't have comments: if ( ! comments_open() ) : ?> <p><?php _e( 'Comments are closed.', 'starkers' ); ?></p> <?php endif; // end ! comments_open() ?> <?php endif; // end have_comments() ?> <?php comment_form(); ?>[the backticks for marking code are on the keyboard to the left of the number 1 – or you can use the ‘code’ button at the top of this editor – http://codex.wordpress.org/Forum_Welcome#Posting_Code ]
any suggestions where to start? The comments form works fine on the other pages that uses it.
Forum: Fixing WordPress
In reply to: Centering contentThat worked perfectly! Thank you so much WPyogi!!
Forum: Fixing WordPress
In reply to: trying to add search bar on just the blog page of siteJust a note, I only need the search bar on this blog page and no other pages. Thanks.
Forum: Fixing WordPress
In reply to: how to connect background images (borders)Not sure I understand that last posting?
Forum: Fixing WordPress
In reply to: how to connect background images (borders)I tried it but can’t seem to figure out where the code would go. The top section seems to be the ‘main’ and the whole thing ‘container’. I’m not sure how to go about connecting the ‘main_background.png’ with the ‘true_foot.png’ images in the ‘main’ and ‘footer’ sections, respectively.
Forum: Fixing WordPress
In reply to: Notice: wp_register_script was called incorrectlyWhere in the theme directory’s functions.php file does that code go?
Thanks!
Forum: Fixing WordPress
In reply to: IIS7 WP local test getting HTTP 500 Internal Server ErrorI did further searching to find that if I disabled friendly HTTP reporting, that the error changed to ‘error establishing a database connection’. I simply went in and dropped the database my wp-config.php file was referencing and recreated a new one with a new user and re-did the permissions. I then changed the values in the php file and all seems ok now.