Quote:
Originally Posted by Trickle
I ended up disabling the SearchCloud in order to get it working.
|
I edited the searchcloud variable names ($s from memory? I made it $scloud) so they no longer conflicted...
Edit the "vB Google Search Cloud 1" plugin and make the code:
Code:
ob_start();
require_once('./search_cloud.php');
$scloud = new SearchCloud();
$scloud->handlePageHit();
$scloud->showCloud();
$vbsearchcloud = ob_get_contents();
ob_end_clean();
Then I edited the search_cloud.php and changed the occurrences of $s there to $scloud (2 occurrences in teh _getURL() function)
They should work together now.