Title: hellomrdavis's Replies | WordPress.org

---

# hellomrdavis

  [  ](https://wordpress.org/support/users/hellomrdavis/)

 *   [Profile](https://wordpress.org/support/users/hellomrdavis/)
 *   [Topics Started](https://wordpress.org/support/users/hellomrdavis/topics/)
 *   [Replies Created](https://wordpress.org/support/users/hellomrdavis/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/hellomrdavis/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/hellomrdavis/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/hellomrdavis/engagements/)
 *   [Favorites](https://wordpress.org/support/users/hellomrdavis/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Editor Tools] Table related features are gone](https://wordpress.org/support/topic/table-relative-features-are-gone/)
 *  [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/table-relative-features-are-gone/#post-10903608)
 * We are experiencing the same issue. It was working and now it is missing.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Amazon Web Services] AWS SDK v3](https://wordpress.org/support/topic/aws-sdk-v3/)
 *  [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/aws-sdk-v3/#post-8648489)
 * I know you answered this three months ago but thought I’d ask now. Any plans?
   I am writing a plugin for a client who utilizes this plugin but the plugin I’m
   writing is dependent upon V3. I’m currently getting conflicts when trying to 
   use both.
    -  This reply was modified 9 years, 6 months ago by [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] can't authenticate](https://wordpress.org/support/topic/cant-authenticate/)
 *  [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/cant-authenticate/page/3/#post-6009022)
 * Updated to 5.4.1 and still doesn’t work. Oh well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] can't authenticate](https://wordpress.org/support/topic/cant-authenticate/)
 *  [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/cant-authenticate/page/2/#post-6009006)
 * Same issue as the others. It worked perfectly until I updated it. Thanks for 
   looking into it!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Multiple requests resulting in 502 errors](https://wordpress.org/support/topic/multiple-requests-resulting-in-502-errors/)
 *  Thread Starter [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/multiple-requests-resulting-in-502-errors/#post-5729528)
 * I can but I’m just using the default template. I had to edit the repeater template
   file to get it to do what I wanted when I contacted you a while back.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Multiple requests resulting in 502 errors](https://wordpress.org/support/topic/multiple-requests-resulting-in-502-errors/)
 *  Thread Starter [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/multiple-requests-resulting-in-502-errors/#post-5729510)
 * They were in our error log for WPEngine as far as I can tell. I see the query
   myself in the console when I click the Load More Posts button but that works 
   as expected. Any idea what could cause the plug-in to start making multiple ajax
   calls besides an influx of users?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Manual Related Posts] Adds extra related posts](https://wordpress.org/support/topic/adds-extra-related-posts/)
 *  Thread Starter [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/adds-extra-related-posts/#post-5252900)
 * I really need to get this fixed. Anybody have a clue out there? The backend has
   four related posts yet more are being posted along with the ones chosen. I am
   pulling in the posts and then treating it as I would any post so I can customize
   the output. It worked fine until updating to version 1.8.1. Here is the snippet
   where I’m pulling in the posts and manipulating the output:
 *     ```
       <?php
       	$ids_manual = wp_parse_id_list( bawmrp_get_related_posts( $post->ID ) ); 
   
       	if(count($ids_manual) > 0 && $isAllowedToView)
       	{
       ?>
       <div class="contentSection">
       	<div class="container fixed">
       		<h3><span>Related Stories</span></h3>
       		<?php $ids_manual = wp_parse_id_list( bawmrp_get_related_posts( $post->ID ) ); ?>
       		<ul id="otherArticles" class="clearfix">
       		<?php
       			//echo "Number of related is " . count($ids_manual);
   
       			foreach($ids_manual as $id)
       			{
       				$post = get_post($id);
       		?>
       			<li>
       				<div class="weeklyImage">
       					<?php $img = get_the_post_thumbnail($post->ID, 'story-medium'); echo '<a href="'.get_permalink().'">';
       					if(strlen($img) > 0){ echo substr($img, 0, strlen($img)-2) . ' nopin="nopin"/>';
       					echo '</a>'; } ?>
       				</div>
       				<div class="weeklyDate">
       					<?php
       						$volumes = get_the_terms($post->ID,'volume');
   
       						if($volumes)
       							foreach($volumes as $volume)
       								break;
   
       						if($volume)
       						{
       							$split = explode(' ',$volume->name);
       							if(intval($split[1]) > 0)	$split[1] = convertToString($split[1]);
       							echo $split[0] . ' ' . $split[1];
       						}
       						else
       							echo date('F j', strtotime($post->post_date));
       					?> / <?php
       						$categories = get_the_category($post->ID);
       						$output = '';
       						//foreach($categories as $category)
       						$category = $categories[0];
       							$output .= '<a href="'.get_category_link( $category->term_id ).'">' . $category->cat_name . '</a>,';
       						echo trim($output, ',');
       					?>
       				</div>
       				<div class="weeklyTitle">
       					<a href="<?php echo get_permalink(); ?>"><?php echo get_the_title($post->ID); ?></a>
       				</div>
       				<div class="weeklyExcerpt">
       					<?php echo get_excerpt_by_id($post->ID, true, 30, ''); ?>
       					<a href="<?php echo get_permalink(); ?>" class="readMore">Read More</a>
       				</div>
       			</li>
       		<?php
       			}
       		?>
       		</ul>
       	</div>
       </div>
       <?php
       	}
       ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Manual Related Posts] Adds extra related posts](https://wordpress.org/support/topic/adds-extra-related-posts/)
 *  Thread Starter [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/adds-extra-related-posts/#post-5252893)
 * Sorry it took a while to respond. I had an old copy on another website. Just 
   moved it over.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SFN Easy FAQ Manager] Expand All / Collapse All feature?](https://wordpress.org/support/topic/expand-all-collapse-all-feature/)
 *  Thread Starter [hellomrdavis](https://wordpress.org/support/users/hellomrdavis/)
 * (@hellomrdavis)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/expand-all-collapse-all-feature/#post-3327000)
 * Ideally it would be located at the top and bottom of the created FAQ list. I’d
   settle for just the top but if a FAQ is lengthy it would make sense to have it
   at the bottom as well.

Viewing 9 replies - 1 through 9 (of 9 total)