thanks admin access help?
I need to reproduce the issue on my test server.
Where can I get the theme you are using?
In fact, is ajax loading part of the theme or plugin?
I need to reproduce ajax loading like you have implemented on your website.
Nevermind, I have prepared a fix.
Can you please try this version:
https://downloads.wordpress.org/plugin/ad-inserter.zip
Hey, @spacetime I went to sleep. Thanks so much this update worked perfectly. The theme is custom dev I am working on right now. Loosely based on 2017.
For you or others who want to look into this, I have used this plugin on top with theme repeaters. Though any type of repeater should be fine. https://connekthq.com/plugins/ajax-load-more/add-ons/previous-post/
I added this code to the single content type which calls the needed filters.
$query = get_post(get_the_ID());
$content = apply_filters(‘the_content’, $query->post_content);
echo $content;