Hi neo1042, The plugin is definitely working for myself and other people on 3.4.1. Why it isn’t working on your WordPress installation is the question.
You can download previous versions from http://wordpress.org/extend/plugins/ad-injection/developers/
In the past few months the updates to Ad Injection have been very minor.
It would be useful for me to know:
o Are you getting any error messages?
o Can you be more specific with where the page stops loading?
o Does using a previous version of Ad Injection help?
o Anything else you’ve discovered.
I wonder if Ad Injection is conflicting with another plugin that you have installed?
Thanks for looking into this. I solved the issue. This was not due to the wordpress or the plugin version. This problem happens when number of tags grows. The problem is caused by the “Tag, category, author and post id filters” section of the plugin both in the main tab and widget. This box tries to load all the tags without any pagination into a select box and as a result when number of tags are large it blocks the whole page till all tags are loaded into the select box. It might be better you let the user to type the tag instead of giving the user a large select box.
I just commented out “adinj_filters_box()” from ui-tab-main.php and everything loads just fine in the main tab. I did the same for the widget as well.
Hi neo1042,
Thanks a lot for the feedback. If it is loading ‘infinitely’ as you said in your first message then that might be your webserver running out of memory for PHP at that point due to the number of tags.
I’ll put this on my list of bugs, and see if I can do something about it sometime.
Thanks!
I am having the exact same problem. Neo, can you explain your fix in more detail? Thank you.
Hi sumgirl,
You need to edit the ui-tab-main.php file in the ad-injection directory. Search for adinj_filters_box( and comment it out by putting two forward slashes in front of it.
Change
<?php adinj_filters_box($ops); ?>
to
<?php //adinj_filters_box($ops); ?>