n2wq
Forum Replies Created
-
Forum: Plugins
In reply to: Idea/Suggestions management plugin or siteOK, I see that WP.org has implemented such a feature, but what I really need is the back-end so I can implement on a different site. I remember one of the plugin developers has it on his/her site, but I after checking over 100 plugins I could not find it! Murphy’s law in action.
The live site is https://www.yourliferegained.com Let me create a backup copy somewhere during the Thanksgiving holiday so that I don’t interrupt the current subscribers (all 10 of them ?? )
If I enable the RSS feature of the plugin, I get 502 error pages, if this is any helpful. Also, for some reason, it takes a few minutes to create or un-do the problem, i.e. the error takes a few minutes to impact the feed.
I have the same problem with the most recent version of the plugin. RSS is no longer valid and when running through the validator shows a bunch of garbage rather than XML.
Forum: Plugins
In reply to: WP-PageNavi Breaks ValidationI fixed validation on the front page https://www.yourliferegained.com but now have to figure out why the category, tag, and archive pages are failing. It turned out that </br> does not have an opening tag so in places where I was doing
</br> the validation was failing when pagenavi enabled.Forum: Fixing WordPress
In reply to: [Plugin: Yet Another Related Posts Plugin] YARPP and Landing sitesmitchoyoshitaka,
I have been monitoring this thread hoping that you will implement the feature M66B proposed. I was wondering if this is still on your agenda or has been abandoned due to lack of interest from others. I am not a programmer and don’t have a good perspective on the amount of effort it would take to implement this valuable SEO feature.
Forum: Plugins
In reply to: WP-PageNavi Breaks ValidationFirst and foremost, thank you very much for investing your time and efforts into developing the supporting the plugin.
I am not sure if this helps, but removing the plugin, without doing anything else, fixes validation. Also, https://validator.w3.org/check?uri=http%3A%2F%2Flesterchan.net%2Fwordpress%2F&charset=(detect+automatically)&doctype=Inline&group=0 shows that the example site is not valid either. I am not a programmer and don’t have a perspective either way; just wanted to share my experience.
Forum: Plugins
In reply to: WP-PageNavi Breaks ValidationMy index.php is as follows:
<?php get_header(); ?>
<div id=”content”>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<div class=”date”>
<?php the_time(‘F j, Y’); ?> by <?php the_author_posts_link(); ?> · <?php comments_popup_link(‘Leave a Comment’, ‘1 Comment’, ‘% Comments’); ?>
Filed under: <?php the_category(‘, ‘) ?> <?php edit_post_link(‘(Edit)’, ”, ”); ?>
<?php if(function_exists(‘the_ratings’)) { the_ratings(); } ?>
</div>
<?php the_excerpt(__(‘Read more’));?><div style=”clear:both;”></div><div class=”postmeta”>
<p>Keywords: <?php the_tags(”) ?> </p>
<?php if( function_exists(‘ADDTOANY_SHARE_SAVE_BUTTON’) ) { ADDTOANY_SHARE_SAVE_BUTTON(); } ?>
</div><?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
<?php if(function_exists(‘wp_pagenavi’)) { wp_pagenavi(); } ?>
</div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>