Custom Google Results Page

Hi,
I would like to integrate a search form and results page into
my site. I saw
this one:
http://www.lapmaster.com/
and liked how it took a google search and placed the results
on the site but
without any Google branding. Can anyone show me how to do
this?
Thanks

1. does anybody has any experience to share about Google's
Public
Service Search (for non-profit organizations)?
2. is it possible to combine Google's search results from
static pages
in a site with a DB search in a unique result page?
the static pages contains cv, descriptions, ... that i have
stored in a
folder and insert with a SSI. i use this approach because is
easier to
format & modify texts with DW. now i'm thinking to put
them in the DB
and do the whole search myself. the drawback is i'll need to
include
format buttons in a form to add/modify info, like those in
forums using
vBulletin
any advice?
PHP, MySQL
tia,
jdoe
> mlapointe wrote:
>
>> The instructions are on Google's website, in the
business section.
>>
http://www.google.com/services/index.html
Depending on the level of
>> customization and "Google-free" branding you want,
you may have to pay
>> for it.

Similar Messages

  • Font size in Google results page is suddenly enormous

    I have an older PowerPC G4 running Mac OS X 10.4.11 and Safari 4.1.3.
    Yesterday, without changing or adding nothing at all, font size in the Google results page suddenly became huge. It looks terrible. This does not affect the main Google page, or the tools column to the left, or any other web sites. Just the Google results column. But since I'm a heavy user, I don't want to be exposed to hugely oversize text several times an hour, day in and day out.
    Google preferences are correctly set -font size in this particular page remains normal in my other, newer machines. My standard font size in Safari preferences is 10 pt, but the the Google results column displays in at least 13 pt.
    I have searched high and low for an explanation or a fix, and come up empty-handed. Has anyone else seen this, or know of a way to control font size in the Google results page/column?

    What you are describing seeing is what I am seeing with 4.1.3 Safari here.
    (Resisting an urge to gaslight the issue here. )
    You might remove all Google cookies and see if there are any Google plist files that may be causing the problem.
    Gonna add my screen grab as well:

  • Where does the Google result page go?

    When I google for a search, then click on one of the results the page opens in the same tab. This is fine as far as I'm concerned, but a lot of the time (not always...) I cannot then back arrow to get back to the google results page. The back arrow is greyed out. How can I make it so that this does not happen?

    Hello weezeelove.
    The CD-R tray inserts into the 'front cover' area in front of the printer.   For illustrations and a guide on CD printing, please view the On-Screen Manual for the unit, which should be installed on your computer.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Customizing Perspectives Results Page

    Is there a way to change the look of a Perspectives results page. When I click on a perspective link, it always brings up a very boring looking page with two tab (items and pages). I would like the page to have a look more like the rest of the site.

    I forgot to say "Thanks!" to whoever answered the initial question.
    Also, I want a UI template associated with all of my perspective pages. This can be done by editing the perspective page after I create it, but by using a default template I could make this happen automatically. Navigation pages don't propogate the selected UI template.
    Thanks again!

  • The address bar used to take me DIRECTLY to a site when i typed one word (facebook, twitter, etc), now it takes me to a google search results page instead. How do I fix this?

    The URL bar used to work almost as an "I'm Feeling Lucky" search, and take me directly to the website. For example, I would type in "facebook" and it would go right to facebook.com, or "twitter" and it would go right to twitter.com.
    Now it goes to a google results page and i have to take the extra step by clicking on the top result, instead of firefox taking me right there.
    I thought this was a feature, but since i upgraded to the newest version of firefox, i can't find it in the settings anywhere and i'm not exactly sure what it's called.

    The URL bar used to work almost as an "I'm Feeling Lucky" search, and take me directly to the website. For example, I would type in "facebook" and it would go right to facebook.com, or "twitter" and it would go right to twitter.com.
    Now it goes to a google results page and i have to take the extra step by clicking on the top result, instead of firefox taking me right there.
    I thought this was a feature, but since i upgraded to the newest version of firefox, i can't find it in the settings anywhere and i'm not exactly sure what it's called.

  • Show Quick Launch (Side Navigation) in Search Results page

    Hi,
    I created a custom search results page in a site (under Pages library). In this page the Quick Launck (side navigation) is hidden. Any solution to display it?
    keren tsur

    You can try this:
    1. Edit page
    2. Create a custom text file and insert the following CSS, which will make the Quick Launch menu visible:
    <style type="text/css">
    #s4-leftpanel {
      display:inherit!important;
      width:155px!important;
    .s4-ca {
      margin-left:155px!important;
    </style>
    Save the file, naming it showQuickLaunch.txt. Store the text file in the Style Library or on the server.
    3. Insert a Content Editor Web Part on the page in which you want to hide the Quick Launch menu. Edit the Web Part, entering the link to the showQuickLaunch.txt file.
    http://sharepointpromag.com/sharepoint/four-ways-add-or-remove-quick-launch-menu-control
    -prs

  • My "What's New" procedure doesn't show the result Search result page

    Hi,
    I needed a "What's New" report for a content area. The advanced search screen has the option to query with the create date, but you can save the search with something like #sysdate-7. So I created the following procedure:
    create or replace procedure whatsnew
    (p_caid in number default 0
    ,p_folder_id in number default 1
    ,p_days in number default 7
    ) is
    a_attribute_id portal30.wwsbr_type.array;
    a_attribute_name portal30.wwsbr_type.array;
    a_attribute_caid portal30.wwsbr_type.array;
    a_attribute_data_type portal30.wwsbr_type.array;
    a_attribute_operator portal30.wwsbr_type.array;
    a_attribute_value portal30.wwsbr_type.array;
    begin
    a_attribute_id(1) := '10';
    a_attribute_name(1) := 'createdate';
    a_attribute_caid(1) := '0';
    a_attribute_data_type(1) := 'date';
    a_attribute_operator(1) := portal30.wwsbr_search_api.greater_than;
    a_attribute_value(1) := to_char(sysdate-p_days);
    portal30.wwsbr_search_api.submit_search
    (p_search_terms => null
    ,p_caid => p_caid
    ,p_current_caid => p_caid
    ,p_folder_id => p_folder_id
    ,p_folder_caid => p_caid
    ,p_include_child_folders => portal30.wwsbr_search_api.yes
    ,p_attribute_id => a_attribute_id
    ,p_attribute_name => a_attribute_name
    ,p_attribute_caid => a_attribute_caid
    ,p_attribute_data_type => a_attribute_data_type
    ,p_attribute_operator => a_attribute_operator
    ,p_attribute_value => a_attribute_value
    end;
    Now you can call this from a dynamic page component (have it displayed as portlet), or include it as an URL item in the content area (/pls/portal30/portal30.whatsnew?p_caid=33&p_folder_id=1&p_days=7).
    This work fine and show the search result. Now I've customized the Search Result Page, but it seems that wwsbr_search_api is navigating to a standard (fixed layout) search result screen (square item/folder links in stead of tabs) and not to my customized Search Result Page. If I click the submit button in the result screen then it navigates to my customized Search Result Page.
    So why doesn't wwsbr_search_api navigate to the customized Search Result Page, or am I doing something wrong ?
    Regards,
    Willem-Pieter van der Lugt
    Oracle Consulting NL

    Hi,
    I just saw topic http://technet.oracle.com:89/ubb/Forum82/HTML/000617.html with the answer pointing to bug 1869531.
    regards,
    Willem-Pieter van der Lugt

  • Since Firefox v34, after zooming text on a page Google Search took me to, the Google search page is blank after clicking 'Back' to it. Is this a v34 glitch?

    Since Firefox v34, the Google Search results page is blank after, 1) Clicking on a link in a Google Search results page and loading the linked page, 2) Zooming in on the text on the page Google took me to, and then without resetting text zoom, 3) Clicking the Firefox 'Back' arrow to return to the Google search results. If at that point I either reload the Google results page, or click back a page and then forward again, the full search results are then displayed again.
    This happens on my Windows 7 PC as well as my Vista Notebook. Is this a glitch with text zooming and Google in Firefox version 34?

    '''>>Type about:preferences#advanced<Enter> in the address bar.<'''
    Setting that made no difference. I ran 30-40 test searches on Google with that set and Firefox restarted in Safe Mode with all add-ons disabled. The problem persists on the vast majority of searches. However backing up to Google search results after following some links doesn't result in the problem.
    For instance when I do a Google search from www.google.com (USA) on [https://www.google.com/?gws_rd=ssl#q=%22Steve+Gibson%22+ "Steve Gibson"] and click the first result, which for me is his Wikipedia page: [http://en.wikipedia.org/wiki/Steve_Gibson_%28computer_programmer%29 "Steve Gibson (computer programmer) - Wikipedia"]. If I hit CTRL/+ a couple times to zoom text after the page loads, and then click Firefox's 'Back" icon, the previous Google search result page will be empty.
    However if I click on the 2nd result in Google's search results, which for me is [https://www.grc.com/stevegibson.htm "GRC | Steve Gibson's WebZone:"], I can zoom the text several times and then click back to the Google search results and find them all displayed fine.
    But I've been having this problem when backing up to Google search results probably 70-90% of the time since I updated from Firefox v33 to v34.
    It's frustrating because Firefox seems to remember the text zoom level for entire domains. So if I zoom on one Wikipedia page, Firefox will display all Wikipedia pages I visit subsequently at that zoom level. I used to love this feature. But it's become a real pain now when I back up to Google.
    BTW: If in the 1st example above, I first reset the text zoom level while I'm still on the Steve Gibson Wiki page, all the Google search results are displayed fine after I click Firefox's 'Back" icon. I don't have this problem in Chrome or Opera.

  • How to make Google custom search results appear on a new page?

    Anybody got any idea how to make the search results appear on a separate page? I'm using the Google custom search to get generated code to place on my pages, after providing some 'guidance' information on the look and feel of it. Normally, Google will provide you with a few options to choose from to determine how your results will look and by default one would choose the "two page" option whilst going thru the setup process. One page for the search box on your own page and one for the results page.
    However, if you don't want a 'google-generated' results page but want the layout that's in line with the look of your site AND have the search box already on there for any repeat searches it becomes more tricky. I tried doing it one way, which I found one a blog tutorial but so far no sucess. The 'search box' code that I inserted onto one of my pages to test didn't show up the search box at all in preview or the live page...
    Anybody got any generic code that can be adapted (that they know works) or know of any tutorial that explains how to achieve this? Preferably Google related, as I'm using its custom search.
    In addition, I believe that recently Google have deprecated the use of iframe in its search results pages so for anybody that was using an earlier version of this facility it may no longer work properly and hence the solution might have to be modified. Not an expert, so not sure how much this fact will affect the final code, just a thought.
    Any ideas/solutions will be greatly appreciated. Thanks.

    hello adrianm12, this should be possible through the metro settings ("search"). also see [https://bugzilla.mozilla.org/show_bug.cgi?id=941292 bug 941292]...

  • Certificate error pops up from Google search results page

    Hi,
    I wanted to find out more info about a certain company, so I typed the name on Google. When I clicked on Search (not I'm feeling lucky!) the search results appeared, but I immediately got a pop-up saying the certificate for the website of the company in question was not valid:
    "Secure Connection Failed
    www.mvfaccount.com:443 uses an invalid security certificate.
    The certificate is not trusted because the issuer certificate is unknown.
    (Error code: sec_error_unknown_issuer)
    This could be a problem with the server's configuration or it could be someone trying to impersonate the server.
    If you have connected to this server successfully in the past the error may be temporary and you can try again later."
    But the thing is: I hadn't even clicked on that search result! The warning appeared while the search results page was loading.
    I find that unsettling because it makes me wonder: does Firefox visit the websites before I visit them?
    And before you ask: no, I'm not a customer of that company (Maple Valley Financial) nor did I ever visit them before.
    Thanks,
    Sergio
    == URL of affected sites ==
    http://www.google.ca/search?source=ig&hl=en&rlz=1G1ACAW_ENCA389&=&q=maple+valley+financial&aq=f&aqi=g1&aql=&oq=&gs_rfai

    I'm not sure how this could be a Firefox setting, but I would try the "usual" first:
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    Alternately, you also can clear Firefox's cache completely using:
    "3-bar" menu button (or Tools menu) > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now"
    If you have a large hard drive, this might take a few minutes.
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site, try either:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    In the dialog that opens, you can remove the site's cookies individually.
    Then try reloading the page. Does that help?
    In case one of your extensions is involved, could you test the page in Firefox's Safe Mode? That's a standard diagnostic tool to deactivate extensions and some advanced features of Firefox. More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using either:
    * "3-bar" menu button > "?" button > Restart with Add-ons Disabled
    * Help menu > Restart with Add-ons Disabled
    Not all add-ons are disabled: Flash and other plugins still run
    After Firefox shuts down, a small dialog should appear. Click "Start in Safe Mode" (''not'' Reset).
    Any difference? If that helps, it could be that you selected to block that element in one of your add-ons.

  • Adding new item to a result page for customer search

    Hi all,
    I have the following requirement :
    In Sales Dashboard,once the user queries for customer, the result table shows name, registery id, address and some other fields.
    I have to add another column 'Account Number', which will display customer number of the customer. With forms personalization, I was able to show the column, but how do I get the value of account_number to display in this column?
    Sorry for the basic question. I am new to OAF and have started reading the guidelines.
    I just need help with the directions I need to go ahead in.
    TIA,
    AZ

    Go to "about this page" link and check the associated VO. if the VO already has the required field which you are looking for, then just set those VO name and attribute. Otherwise you will have to go for substitution.
    Search on forum and you will find many similar discussions.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Why does firefox 4 freeze on the 1st result page of google search engine

    I updated to Firefox 4 yesterday and now every time I use the google search engine my screen freezes on the first results page and will not allow me to click on any of the links on it, saying that it is not responding before eventually the screen goes white.
    I tried to find a solution on the Firefox Support page but the only solution relates to McAfee Site Advisor. As I do not have this installed and never have I was wondering if it would be possible for you to tell me how do I fix it?
    Thank you.

    Hi, i had the same problem, and I also use Bullguard, I contacted them, just received answer, (in about 20 min). It is incompatibility of FF4 and bullguard (they know about it, and fix will be released soon), and probably most of the other antiviruses, as I see this is very popular problem. The solution though is very simple : in firefox disable addon "Bullguard Safe Browsing". It works. Or alternatively open bullguard go : antivirus - settings - safe browsing (unchek that). For those not using bullguard i would recommend to check their addons in FF and if there is any from your antivirus try to disable it for now.

  • Clicking a search result from search bar goole seaech, always opening google home page but only can open search in new tab by middle click,really frustrating.

    Whenever i am clicking search result from Google search bar, it always opens the Google home page. I can only open search result in new tab by double clicking. It started when i installed Firefox 12.

    @mstm, please ensure that you write some thing in search bar before you click search icon. without entering anything will redirect to google.com. And make sure that you are clicking on search icon not home icon.

  • Setting Custom Master page in search results page - Publishing site

    Hi,
    I have a publishing site, in which i have a custom Master page.
    However when doing the search in the site, the search results does not show the custom Master page.
    Is it possible to set the custom created Master page for the search results page? How to achieve this?
    Thanks

    Hi Venkat,
    The search page for a publishing site is a file available in the layouts folder (I believe it is the osssearchresults.aspx if you see the address bar). It is used by all web applications and site collections in your farm. So ideally you should not change
    it. I mean you can change it to point to your master page but it is bad practice ..
    I would instead do the following
    1. Create a custom search results web part page and place it in the site collection itself (one of the document libraries)
    2. Custom search results is not difficult because all search results pages are made of a set of Out of the box search results web parts. If you add the same webparts to your page as the default search results page, you have effectively created a copy of
    it
    3. go to site settings --> search settings and change the search results page to your newly created page
    4. The newly created page by virtue of its location will automatically use the master page the rest of the site uses.
    I could not spend the time to try the above for you but I am sure the above will work.
    Thanks and Regards,
    Partha
    AvePoint

  • Access query strings in a search results page with custom display template

    am trying to create a  custom display template in my search results page , so i went to download the itemdefault html file and renamed it and  saved as  different file.and  am started to updating.
    the issue i am facing here is : in my  search results page there are 2 query strings, which are passed by anotehr .net appln[ another asp.net appln will be sending the query string to my sp 2013 search results page]
    but, how can i  read these 2  query strings using jslink and  new token _#- ? 
             <!--#_
               var QStringResults= null;
    ctx.OnPostRender = [];
    ctx.OnPostRender.push(function(){ 
    QStringResults= getQuString(); //here am unable to read the QStringResults value 
     _#-->  
    the below is my cstomhtml file
    am unable to  get the values :
                   <a href="http://srvrname:2013/sites/CMP/_layouts/15/BIFAddInputRef/bifpage1.aspx?bif1=_#= $htmlEncode(QStringResults) =#_"> Add Input Reference </a>
    <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"> 
    <head>
    <title>Item BIF</title>
    <!--[if gte mso 9]><xml>
    <mso:CustomDocumentProperties>
    <mso:TemplateHidden msdt:dt="string">0</mso:TemplateHidden>
    <mso:MasterPageDescription msdt:dt="string">Displays the default result item template.</mso:MasterPageDescription>
    <mso:ContentTypeId msdt:dt="string">0x0101002039C03B61C64EC4A04F5361F385106603</mso:ContentTypeId>
    <mso:TargetControlType msdt:dt="string">;#SearchResults;#</mso:TargetControlType>
    <mso:HtmlDesignAssociated msdt:dt="string">1</mso:HtmlDesignAssociated>
    <mso:ManagedPropertyMapping msdt:dt="string">'Title':'Title','Path':'Path','Description':'Description','EditorOWSUSER':'EditorOWSUSER','LastModifiedTime':'LastModifiedTime','CollapsingStatus':'CollapsingStatus','DocId':'DocId','HitHighlightedSummary':'HitHighlightedSummary','HitHighlightedProperties':'HitHighlightedProperties','FileExtension':'FileExtension','ViewsLifeTime':'ViewsLifeTime','ParentLink':'ParentLink','FileType':'FileType','IsContainer':'IsContainer','SecondaryFileExtension':'SecondaryFileExtension','DisplayAuthor':'DisplayAuthor','CMPBIFURL2':'CMPBIFURL2'</mso:ManagedPropertyMapping>
    <mso:_dlc_DocId msdt:dt="string">X3CVW7PXYF6P-3-222</mso:_dlc_DocId>
    <mso:_dlc_DocIdItemGuid msdt:dt="string">3ed12157-ea19-4591-b9cd-7a826aef35dc</mso:_dlc_DocIdItemGuid>
    <mso:_dlc_DocIdUrl msdt:dt="string">http://srvrname:2013/sites/CMP/_layouts/15/DocIdRedir.aspx?ID=X3CVW7PXYF6P-3-222, X3CVW7PXYF6P-3-222</mso:_dlc_DocIdUrl>
    </mso:CustomDocumentProperties>
    </xml><![endif]-->
    </head>
    <body>
        <script>
            $includeLanguageScript(this.url,"~sitecollection/_catalogs/masterpage/Display Templates/Search/BIFJScript.js");
        </script>
        <div id="Item_BIF2">
    <!--#_ 
            if(!$isNull(ctx.CurrentItem) && !$isNull(ctx.ClientControl)){
                var id = ctx.ClientControl.get_nextUniqueId();
                var itemId = id + Srch.U.Ids.item;
    var hoverId = id + Srch.U.Ids.hover;
    var hoverUrl = "~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default_HoverPanel.js";
                $setResultItem(itemId, ctx.CurrentItem);
    if(ctx.CurrentItem.IsContainer){
    ctx.CurrentItem.csr_Icon = Srch.U.getFolderIconUrl();
    ctx.currentItem_ShowHoverPanelCallback = Srch.U.getShowHoverPanelCallback(itemId, hoverId, hoverUrl);
                ctx.currentItem_HideHoverPanelCallback = Srch.U.getHideHoverPanelCallback();
    _#-->
             <!--#_
               var QStringResults= null;
    ctx.OnPostRender = [];
    ctx.OnPostRender.push(function(){ 
    QStringResults= getQuString();
     _#-->  
            <div id="_#= $htmlEncode(QStringResults) =#_" name="bifItemqstring" 
                    data-displaytemplate="DefaultItem" class="ms-srch-item" 
                    >
                    <h5 style="color:ghostwhite;background-color:black">
                        <a href="_#= ctx.CurrentItem.Path =#_"> _#= ctx.CurrentItem.Path =#_</a>
                    </h5>
                </div>
                <div id="_#= $htmlEncode(itemId) =#_" name="bifItem" 
                    data-displaytemplate="DefaultItem" class="ms-srch-item" 
                    onmouseover="_#= ctx.currentItem_ShowHoverPanelCallback =#_" 
                    onmouseout="_#= ctx.currentItem_HideHoverPanelCallback =#_">
                    <h1 style="color:ghostwhite;background-color:black">
                        <a href="_#= ctx.CurrentItem.Path =#_"> _#= ctx.CurrentItem.Path =#_</a>
                    </h1>
                    <h4 style="color:ghostwhite;background-color:black">
                        <a href="_#= ctx.CurrentItem.Description =#_"> _#= ctx.CurrentItem.Description =#_</a>
                    </h4>
                    <h4 style="color:ghostwhite;background-color:black">
                        <a href="_#= ctx.CurrentItem.LastModifiedTime =#_"> _#= ctx.CurrentItem.LastModifiedTime =#_</a>
                    </h4>
                    <h3 style="color:floralwhite;background-color:green">
                        var mybifurl1= document.getElementById($htmlEncode(QStringResults));
                    <a href="http://srvrname:2013/sites/CMP/_layouts/15/BIFAddInputRef/bifpage1.aspx?bif1=_#= $htmlEncode(QStringResults) =#_"> Add Input Reference </a>
                    </h3>
                  </div>
            <div>
            </div>
                    <div id="_#= $htmlEncode(hoverId) =#_" class="ms-srch-hover-outerContainer"></div>
    <!--#_ 
    _#-->
        </div>
    </body>
    </html>
    when i run the page , i a getting the query string value as   undefined! though the custom javascript is getting called.

    i am able to get the  results  by implementing the below:
    <h4 style="background-color:black">
                        <a onclick="javascript:mycalltojs(_#=
    ctx.CurrentItem.Path=#_) > click here </a>
                    </h4>
    hope this helps  anyone

Maybe you are looking for

  • Maximum size of an XML attribute?

    What is the maximum size of an XML attribute? I can't find this define in the OMG XML specification. Does the Oracle XML parser have a maximum size of an XML attribute? Do other XML parsers on the market have any limitation? ... we need to exchange X

  • Making changes to bookmarks on safari

    When i make changes to order or add new/delete a bookmark or create a new bookmark folder, the changes are not saved when i close the safari down. When safari is re-launched, any of the above changes i made are gone, and settings are re-set. I have m

  • Question about network statement in OSPF and BGP

    The network statements in OSPF and BGP can be used to advertise networks. But I'm not clear under what circumstances would make more sense to use network statements to advertise a network than by using other methods to have the network learned by oth

  • R12 DMZ login page hangs after some time

    Node 1: Database 10.2.0.3 Node 2: internal Application Node 3: External Application - currently not exposed to the internet, we are testing opening the URL internally. Followed DOC I: 380490.1 - in order to achieve the External node. The Database and

  • Error Correlation ID: 29cb4bfc-421e-42be-9fe4-50a5c686fec4 is displayed when I perform a search on our Intranet ?

    When I perform a search on our Intranet it shows a displayed of Correlation ID: 29cb4bfc-421e-42be-9fe4-50a5c686fec4 I have researched the problem and it seems to be something to do with a service application but which I have created a new one but th