Quote:
Originally Posted by Emil
I don't think that'll work since the display.php is from an ad company that'll show random links.
The display.php file looks like this:
<?php
ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../');
include ('ad_network_274.php');
echo $ad_network;
?>
|
In your plugin you added, instead of having include('display.php'); use this:
Code:
ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../');
include ('ad_network_274.php');
Then in your template, wherever you want the ads to show, put $ad_network.
That should work, and also eliminated the display.php file.