jlhudy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Latest blog posts not showing up in RSS feedGood to go!
Forum: Fixing WordPress
In reply to: Latest blog posts not showing up in RSS feedThank you MacManX! I did just that and deactivated all my plugins, reactivating a few at a time until I found the two culprits!
I will get in touch with those vendors to see if there are known issues.
I’m going to wait until I post again before I mark this resolved, but think I’ll be good.
Thanks!!!!
Forum: Fixing WordPress
In reply to: Comment box missing and Posts not LoadingOkay.. problems resolved.. maybe just took some time for the sites to sync.
Thanks for the patience and guidance! ??
Forum: Fixing WordPress
In reply to: Comment box missing and Posts not LoadingUpdate:
Modified Thesis file, but comments still not displaying.Other error has been resolved with old posts not being clickable, so now only issue is the comments.
Forum: Fixing WordPress
In reply to: Comment box missing and Posts not LoadingHi Tara-
Thank you; I skimmed the thread that you posted prior to writing my issue, but I was in the freak-out-panic mode and completely missed the Thesis issue. Thank you for this.. I have just made that fix.
Few errors today, but I believe the comment issue may resolve some:
[15-Sep-2014 15:48:46 UTC] WordPress database error Table ‘winetowe_wrd1.wp_0_comments’ doesn’t exist for query SHOW COLUMNS FROM wp_0_comments LIKE “openid” made by activate_plugins, activate_plugin, do_action(‘activate_openid/openid.php’), call_user_func_array, openid_activate_plugin, openid_migrate_old_data
[15-Sep-2014 15:48:55 UTC] WordPress database error Duplicate key name ‘wp_greet_box_post_related’ for query ALTER TABLE wp_posts ADD FULLTEXT wp_greet_box_post_related (post_title, post_content); made by activate_plugins, activate_plugin, do_action(‘activate_wp-greet-box/wp-greet-box.php’), call_user_func_array, WPGreetBoxAdmin->activateForum: Fixing WordPress
In reply to: Comments not displayingAmber-
I see your comments are working now; how did you fix this?Forum: Fixing WordPress
In reply to: Permalink Redirect not working at upgradeLooks like that worked!!!!
Forum: Fixing WordPress
In reply to: Permalink Redirect not working at upgrade@lightsoutdave I would have been quite embarrassed if that was all I needed to fix it! Sadly, no luck.
Forum: Themes and Templates
In reply to: Cannot change Author comments ColorThank you!!!!! Dang, so much easier than what I was trying to do.
I appreciate it. ??
Forum: Themes and Templates
In reply to: Cannot change Author comments ColorAh.. was so good about posting all my codes, I forgot my link.
https://www.winetoweightlifting.com
style.css
[css code moderated - this is easily accessible from the link to your site]
Forum: Themes and Templates
In reply to: Comment box does not show up on main page; only post pageI’ll have to tweak it to make it pretty, but exactly the code I needed!!!
Thank you!!!
Forum: Themes and Templates
In reply to: Comment box does not show up on main page; only post pageSure thing.
<?php get_header(); ?> <?php if ( is_front_page() && !is_paged() && get_header_image() ) :?> <div class="header_img"> <img src="<?php header_image(); ?>" width="<?php echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" title=""/> </div> <?php endif; ?> <section class="center_col" id="posts"> <div id="page_nav_up"> <?php previous_posts_link(); ?> </div> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="block_dec_line"></div> <div class="block"> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" id="title"><h1><?php the_title(); ?></h1></a> <small><?php fistyme_home_post_info_top(); ?></small> <div class="content"> <?php if ( has_post_thumbnail() ) { the_post_thumbnail();} ?> <?php firstyme_content_display(); ?> <?php if( get_the_title() == ""){?> <p><small><a href="<?php the_permalink()?>" title="<?php the_title_attribute(); ?>"><?php _e('Go to the post ›', 'firstyme'); ?></a></small></p> <?php }?> </div> <!-- /content --> <div class="clear"></div> <p><small><?php fistyme_home_post_info_bottom(); ?></small></p> </div> <!-- /block --> </article> <!-- /article --> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts on this blog yet.', 'firstyme'); ?></p> <?php endif; ?> <div id="page_nav_down"> <?php next_posts_link(); ?> </div> </section> <!-- /center_col --> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Comment box does not show up on main page; only post page