Home › Forums › Product Support Forums › Related Posts Pro for WordPress Support › Featured Images not Displaying and Random Order › Reply To: Featured Images not Displaying and Random Order
May 15, 2020 at 12:26 pm
#27365
Keymaster
Hi,
I’m afraid there isn’t any way, except for making direct modifications to the code. There are only filters for each individual items post-process, but that would not help in this case.
If you want, you can try a simple modification:
1. Open up the wp-content/plugins/related-posts-pro/includes/related_content.class.php file on the server
2. Go to line 1532, it should be a closing } parenthesis
3. After that line, put this: shuffle($this->posts);
.. so it should look like:
$this->adv_content_field($this->posts[$key]->author, "authorfield", $this->advAuthorField, $post->id);
// ---------------------------------------------------------------
}
shuffle($this->posts);
}
}
It could actually work.