Digital Point Forums
San Diego Models

Go Back   Digital Point Forums > Search Engines > Google > AdSense
Google Analytics
Log In to view
your analytics

Reply
 
Thread Tools
  #1  
Old Aug 15th 2006, 6:19 pm
tlainevool tlainevool is offline
of the Nightfall
 
Join Date: Apr 2005
Location: Los Angeles
Posts: 1,071
tlainevool will become famous soon enoughtlainevool will become famous soon enough
AdSense for Search Now Allows Results on Your Own Page

JenSense has the scoop on a new feature for AdSense for Search. You can now open up your results on a page on your own site instead of on Google's site. Those of you who didn't like AdSense for Search because it sent away traffic might like this.

Details here.
Reply With Quote
  #2  
Old Aug 15th 2006, 6:33 pm
spander spander is offline
Peon
 
Join Date: Jun 2006
Posts: 14
spander is on a distinguished road
I've set it up on my site, and it works great, however if the visitor's Google prefs are set to show more than 10 results per page, then that also seems to be in effect for the site search as well, and the results for page 2 and on don't fit in the iframe.

I sent a bug report to Google about that, so let's hope they fix it up.
Reply With Quote
  #3  
Old Aug 15th 2006, 6:39 pm
1EightT 1EightT is offline
Starcaller
 
Join Date: Jun 2006
Posts: 2,555
1EightT has a spectacular aura about1EightT has a spectacular aura about1EightT has a spectacular aura about
cool, that's a step in the right direction
Reply With Quote
  #4  
Old Aug 15th 2006, 6:53 pm
jackburton2006's Avatar
jackburton2006 jackburton2006 is offline
Astral Walker
 
Join Date: Nov 2005
Posts: 5,297
jackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud of
Quote:
Originally Posted by tlainevool View Post
JenSense has the scoop on a new feature for AdSense for Search. You can now open up your results on a page on your own site instead of on Google's site. Those of you who didn't like AdSense for Search because it sent away traffic might like this.

Details here.
Good find! I don't read Jensense nearly as much as I should. This will definitely come in handy; I dislike the current option we have, so this should open more options.
__________________
"I have come here to chew bubblegum and kick ass. And I'm all out of bubblegum."
Reply With Quote
  #5  
Old Aug 15th 2006, 10:25 pm
kwathabeng's Avatar
kwathabeng kwathabeng is offline
Peon
 
Join Date: Aug 2006
Location: .co.za
Posts: 15
kwathabeng is on a distinguished road
Quote:
Originally Posted by spander View Post
I've set it up on my site, and it works great, however if the visitor's Google prefs are set to show more than 10 results per page, then that also seems to be in effect for the site search as well, and the results for page 2 and on don't fit in the iframe.

I sent a bug report to Google about that, so let's hope they fix it up.
You fix the problem by setting the frame width to 700 and the length to any size you wish. Then you add this style to your header which will give you a vertical scrollbar in the iframe for your search results:

<style>
#googleSearchUnitIframe iframe {
overflow: auto;
}
</style>

<!-- Google Search Result Snippet Begins -->
<div id="googleSearchUnitIframe"></div>
<script type="text/javascript">
var googleSearchIframeName = 'googleSearchUnitIframe';
var googleSearchFrameWidth = 700;
var googleSearchFrameHeight = 1000;
var googleSearchFrameborder = 0 ;
</script>
<script type="text/javascript"
src="http://www.google.com/afsonline/show_afs_search.js">
</script>
<!-- Google Search Result Snippet Ends -->

You can also add your search box to the same page.
Have a look at this page for a quick example I put together:
http://www.kwathabeng.co.za/search.html

What I still don't like about it is that the clicks open in the same tab or window and therefore replace your window. I tried adding the following to the
search:
<input type="hidden" name="newwindow" value="1">

and this:

<BASE TARGET="_blank">

but neither help. Maybe someone can help with this one.
Reply With Quote
  #6  
Old Aug 15th 2006, 11:53 pm
Pathan's Avatar
Pathan Pathan is offline
Banned
 
Join Date: Jan 2006
Location: Twitter.com/eMobilez
Posts: 2,007
Pathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to beholdPathan is a splendid one to behold
Hey nice to see this. Adsense for search has very much potential. Google pays very reasonalbe amount of search Ads.
Reply With Quote
  #7  
Old Aug 15th 2006, 11:55 pm
infonote's Avatar
infonote infonote is offline
Starcaller
Recent Blog: Sophie Sugar
 
Join Date: Jan 2006
Location: Malta
Posts: 3,989
infonote will become famous soon enoughinfonote will become famous soon enough
Thanks for this news.
__________________
Visit:
InfoNote
Reply With Quote
  #8  
Old Aug 16th 2006, 12:39 am
kwathabeng's Avatar
kwathabeng kwathabeng is offline
Peon
 
Join Date: Aug 2006
Location: .co.za
Posts: 15
kwathabeng is on a distinguished road
I can't seem to get the scrolling to work in IE7b3.
It only seems to work in FireFox (my preference).
However 90% of people still using IE(6).
Can someone tell me what I've missed here?

http://www.kwathabeng.co.za/search.htnl

Thanks
Reply With Quote
  #9  
Old Aug 16th 2006, 4:50 am
spander spander is offline
Peon
 
Join Date: Jun 2006
Posts: 14
spander is on a distinguished road
kwathabeng, it also only works for me in Firefox for Mac, but not Safari. The only way I can make the width work is with this:

<style>
#googleSearchUnitIframe iframe {
overflow: auto;
width:630;
}
</style>

No other style attributes, such as scrolling, seem to work as G over-rides them in the js file.
Reply With Quote
  #10  
Old Aug 16th 2006, 6:56 am
Otterstedt Otterstedt is offline
Peon
 
Join Date: Mar 2006
Location: Sower Saxony, Germany
Posts: 19
Otterstedt is on a distinguished road
Cool, very very cool! I just put it on our Wiki. Looks great ;-)
http://www.otterstedt.de/wiki/index.php/Hauptseite
(See Google-Searchbox on the left)
Reply With Quote
  #11  
Old Aug 16th 2006, 7:17 am
maney maney is offline
of the Nightfall
 
Join Date: Apr 2006
Location: UK
Posts: 1,068
maney will become famous soon enoughmaney will become famous soon enough
I'm having some trouble adjusting the size of it, I want to give the ifram a width of 500 (as apposed to the default of 650) but no matter how small I make it in the hode it doesn't appear any smaller on the page, it will go larger though.

Any ideas?
__________________
Pr3 web directory - $5/perm - Currently only 49 active links (10/07/08)
Reply With Quote
  #12  
Old Aug 16th 2006, 7:39 am
usedmac's Avatar
usedmac usedmac is offline
Twilight Vanquisher
 
Join Date: Nov 2005
Location: Vancouver B.C. Canada
Posts: 532
usedmac is on a distinguished road
I just got it setup on one of my sites as a test run. Everything looks good so far, but I wonder how this will affect CTR?
Reply With Quote
  #13  
Old Aug 16th 2006, 7:49 am
Otterstedt Otterstedt is offline
Peon
 
Join Date: Mar 2006
Location: Sower Saxony, Germany
Posts: 19
Otterstedt is on a distinguished road
Hi maney, I'm afraid, you are not allowed to change the code, or did I
overlook a place to change the width on the setup pages?
Reply With Quote
  #14  
Old Aug 16th 2006, 8:02 am
GeorgeB.'s Avatar
GeorgeB. GeorgeB. is offline
Astral Walker
 
Join Date: Mar 2005
Location: PayWeber.com (coming soon!)
Posts: 5,498
GeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to beholdGeorgeB. is a splendid one to behold
Great I'm gonna adjust this on mine. Hope it helps.
__________________
Play free mini games online.
PC Gamer? Join or laptop gaming forum today.
Reply With Quote
  #15  
Old Aug 16th 2006, 9:46 am
Jenstar's Avatar
Jenstar Jenstar is offline
Taking the long way...
 
Join Date: Aug 2005
Location: Starbucks!
Posts: 524
Jenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of light
This is a cool new addition to AdSense for Search they finally added. But Otterstedt is right, you are not allowed to edit this code at all, such as to change the iframe size or to attempt to open the resulting clicks in a new window. Changing the code is a violation of the terms/policies, so I wouldn't do it, unless you want to rack up a compliancy warning on your AdSense account, I suspect this is one they will be watching closely to prevent any abuse
Reply With Quote
  #16  
Old Aug 16th 2006, 11:05 am
jackburton2006's Avatar
jackburton2006 jackburton2006 is offline
Astral Walker
 
Join Date: Nov 2005
Posts: 5,297
jackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud of
I can't believe people still don't "get" that they can't just manipulate the Adsense codes to anything they want yet. I mean, come on, people, are we all noobs here or what...?
__________________
"I have come here to chew bubblegum and kick ass. And I'm all out of bubblegum."
Reply With Quote
  #17  
Old Aug 16th 2006, 11:09 am
JasonBartholme's Avatar
JasonBartholme JasonBartholme is offline
Hand of A'dal
 
Join Date: Jun 2006
Location: Illinois
Posts: 397
JasonBartholme will become famous soon enough
<scratches coding a site search off his list of things to do>

If I can get this to show up well in my ColdFusion pages, it's going to save me alot of time.
__________________
Author's Wanted: Article Submission | SEO Blog |
Reply With Quote
  #18  
Old Aug 17th 2006, 11:40 am
kwathabeng's Avatar
kwathabeng kwathabeng is offline
Peon
 
Join Date: Aug 2006
Location: .co.za
Posts: 15
kwathabeng is on a distinguished road
OK, I got the scrolling working now on IE7 (sort of).
IE is way different to FireFox.

Have another look at: http://www.kwathabeng.co.za/search.html

jackburton2006 please take note: it's done without manipulating the Adsense code. Google give you enough variables to play with to manipulate the output.

NB: Sorry, but I can't post live links as yet. You'll have to use the old copy and paste method.
Reply With Quote
  #19  
Old Aug 17th 2006, 12:58 pm
Jenstar's Avatar
Jenstar Jenstar is offline
Taking the long way...
 
Join Date: Aug 2005
Location: Starbucks!
Posts: 524
Jenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of lightJenstar is a glorious beacon of light
Quote:
jackburton2006 please take note: it's done without manipulating the Adsense code
If you are changing the code in any way to something different from what you get from your AdSense control panel, it is considered manipulating the AdSense code, and it is against the AdSense terms.
Reply With Quote
  #20  
Old Aug 17th 2006, 1:26 pm
jackburton2006's Avatar
jackburton2006 jackburton2006 is offline
Astral Walker
 
Join Date: Nov 2005
Posts: 5,297
jackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud ofjackburton2006 has much to be proud of
Quote:
Originally Posted by kwathabeng View Post
OK, I got the scrolling working now on IE7 (sort of).
IE is way different to FireFox.

Have another look at: http://www.kwathabeng.co.za/search.html

jackburton2006 please take note: it's done without manipulating the Adsense code. Google give you enough variables to play with to manipulate the output.

NB: Sorry, but I can't post live links as yet. You'll have to use the old copy and paste method.
As Jenstar said, you better be able to change what you're changing via Adsense's wizard, otherwise you are manipulating the codes outside Adsense's parameters.
__________________
"I have come here to chew bubblegum and kick ass. And I'm all out of bubblegum."
Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to pass page 26 of search results pipes Microsoft 8 Apr 3rd 2006 10:18 pm
Search from results page does not work tochiro Google APIs 0 Jan 27th 2006 1:50 am
Two results on one page in the search results Roze Google 7 Dec 23rd 2005 7:32 am
Page description in search results...where? ehenderson Google 5 Jun 1st 2005 1:39 pm
Search Results By Page Rank FFF All Other Tools 2 Mar 28th 2005 12:18 am


All times are GMT -8. The time now is 3:59 pm.