Hmm...weird...go back to the google.php file and lave the following like you see it below and dont put google where it says "test" .... I just tried this on a new style and it worked .... I don't see why it doesn't work on your site ...
define('THIS_SCRIPT', 'test');
define('CSRF_PROTECTION', true);
--------------- Added [DATE]1411075097[/DATE] at [TIME]1411075097[/TIME] ---------------
Quote:
Originally Posted by Nelson58
Entered everything exactly. Named the .PHP file "google.php" and changed the line from 'test' to 'google' as required.
Nothing is showing up on the page. I checked the Google code and it is correct. I entered my code exactly as from the Google site. I must be doing something wrong. Is there anything I should try?
|
What code from the Google site are you talking about? You shouldn't be adding any extra code but what I gave you .... the line from "test" to "google" is not required either ...
--------------- Added [DATE]1411076426[/DATE] at [TIME]1411076426[/TIME] ---------------
Ok I might of found the problem:
In your headinclude make sure the code looks like this:
Code:
<!-- google cse -->
<script>
(function() {
var cx = 'partner-pub-014891898195566079264:j9p1m_ucz0q'; ///////////////CHANGE THIS TO YOUR OWN ID ////
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<!-- / google cse -->
Your id should look like this: partner-pub-014891898195566079264:j9p1m_ucz0q
in yours you left out the "partner-pub" in your id ....