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

Similar Messages

  • How to show all records by default on search result page?

    Hi
    I am trying to make a search page that would execute the search in the database based on one or more field constraints.
    (Using MySQL,PHP)
    I have  2 columns in the database "vm_ip" (primary key) <IP address>, "Operating_System" <Any, Windows, Solaris, AIX>
    need to search vm_ip based on other two fields.
    PROBLEM: Need to show all the record when I select "Any" in the Operating_System  drop down menu.
    <p>Operating System:
        <select name="os_select" id="os_select">
        <?php
    $os_count=1;
    foreach($os_type as $value) //(os_type is array with possible values of OS)
    echo "<option value=".$os_count.">".$value."</option>";
        $os_count++;
    ?>
          <option value=" " selected="selected">Any</option>
        </select>
      </p>
    this code POSts  NULL value to the search page.
    Below code is of recordset on  search page
    $varOS_virtual = "Operating_System"; // recordset variable set to same as column name (default value)
    if (isset($_POST['os_select'])) //this should not be true
      $varOS_virtual = $_POST['os_select'];
    mysql_select_db($database_xyz_db, $xyz_db);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table
    WHERE table.Operating_System=%s", GetSQLValueString($varOS_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz_db) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    I expected the 'os_select' field to be null and default value of Operating_System to be "Operating_System" so that the Query shows all records.
    But instead the value being passed in the Query is "0". and no records are shown.
    What can I do to show all records?
    As probably obvious I am new to php/MySQL so all the help is most welcomed .
    Thanks

    Hi
    Thanks for the prompt reply but this does not solve my problem.
    First thing I appologise for giving you incorrect info. Actually I have many more constraints on the search apart from OS.
    Didn't think I would get single constraint specific ans.
    Here is what all i tried and problems I faced:
    1. I cannot use seperate queries cause I have around 7-8 other constraints on the search.
    2. I cannot play around with the Record set code. For some reason even if I mess with it a little bit Dreamweaver stops recognising the recordset. for eg i tried the below code:
    $query_virtual = sprintf("SELECT table.VM_IP FROM table WHERE
    table.Operating_System=%s ,($_POST['os_select']=="")? TRUE:GetSQLValueString($varOS_virtual, "int"));
    this ran well for the first time, and then the record set was screwed up. kept on asking me to "Discover" the links, which it couldn't do.
    3.  take a look at this code:
    $varOS_virtual = "Operating_System";
    if (isset($_POST['os_select'])) {
      $varOS_virtual = $_POST['os_select'];
    $varState_virtual = "State";               //second constraint
    if (isset($_POST['state_select'])) {
      $varState_virtual = $_POST['state_select'];
    mysql_select_db($database_xyz, $xyz);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table AND table.Operating_System=%s AND State=%s",
    GetSQLValueString($varOS_virtual, "int"),GetSQLValueString($varState_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    here on passing NULL value for "Any"  GetSQLValueString($varOS_virtual, "int") functions returns NULL and though the Default value of
    varOS is set to 'Operating_System" query takes NULL value only which when executed shows no records.
    My problem majorly revolves around how to put something like "WHERE Operating_System= Operating_System" OR  "WHERE Operating_System= TRUE" in the query, when passed through variable they are sent as Strings or NULL.
    Thats why WHERE 1=1 also doesnt work, because it has "WHERE Operating_System= NULL" in AND.
    Logically when NULL is passed default value of variable should comeinto picture, but tha isnt happening.
    Thanks again for answering. hope I was able to explain my problem.

  • 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

  • I have Google set to show results in a new window. When I click on a results page link Firefox reverts to search results page almost instantly

    I have Google set to show results in a new window, never use Google instant & search filtering off. When I click on a link on the results page Firefox reverts to the search results page almost instantly. I can of course select the desired page (via windows Aero). This happens on several computers, PCs & Laptops.
    Not a major problem but VERY irritating. This seems to have happened from a few update ago ?

    This can be caused by corrupted cookies or cookies that aren't send or otherwise blocked.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    *http://kb.mozillazine.org/Cookies

  • Google search results page is not showing the full (green) http link

    google search results page is not showing the full (green) http link

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    You can also check for problems caused by extensions.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can do a check for corrupted and duplicate fonts and other font issues:
    *http://www.thexlab.com/faqs/multipleappsquit.html - Font Book 2.0 Help: Checking for damaged fonts
    *http://www.creativetechs.com/iq/garbled_fonts_troubleshooting_guide.html

  • Search result Page throw Error for anonymous User

    We have claim base WebApplication in SharePoint 2013. Every thing is working fine and user can login site without any problem. Only search result page not working..its given "Sorry, something went wrong "
    From ULS Log I found below exception
    CoreResultsWebPart::OnInit: Exception initializing: System.InvalidOperationException: The security token request cannot be completed.    
     at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForServiceContext(Uri contextUri)    
     at Microsoft.SharePoint.SPChannelFactoryOperations.InternalCreateChannelActingAsLoggedOnUser[TChannel](ChannelFactory`1 factory, EndpointAddress address, Uri via)    
     at Microsoft.Office.Server.Search.Administration.SearchServiceApplicationProxy.GetChannel(Uri address, Int32 timeoutInMilliseconds)    
     at Microsoft.Office.Server.Search.Administration.SearchServiceApplicationProxy.DoSpLoadBalancedUriWsOp[T](WebServiceBackedOperation`1 webServiceCall, Int32 timeoutInMilliseconds, Int32 wcfTimeoutInMilliseconds, String operationName)    
     at Microsoft.Office.Server.Search.Administration.SearchServiceApplicationProxy.DoWebServiceBackedOperation[T](String operationName, Int32 timeoutInMilliseconds, Int32 wcfTimeoutInMilliseconds, WebServiceBackedOperation`1 webServiceCall)    
     at Microsoft.Office.Server.Search.Administration.SearchServiceApplicationProxy.DoWebServiceBackedOperation[T](String operationName, WebServiceBackedOperation`1 webServiceCall)    
     at Microsoft.Office.Server.Search.Query.ConsumerScopeCache.Refresh(IEnumerable`1 sharedScopes)    
     at Microsoft.Office.Server.Search.Query.ConsumerScopeCache.EnsureFresh()    
     at Microsoft.Office.Server.Search.Query.ConsumerScopeCache.TryGetScope(Int32 id, ScopeInformation& scope)    
     at Microsoft.Office.Server.Search.Query.ScopeCache.TryGetScope(Guid siteGuid, Int32 id, ScopeInformation& scope)    
     at Microsoft.Office.Server.Search.WebControls.SearchCommon.GetScopeNameByScopeID(Guid siteGuid, Int32 scopeID)    
     at Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.SetPropertiesOnQueryReader()    
     at Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart.OnInit(EventArgs e)
    We are using Arabic Language Pack SharePoint 2013 on Windows server 2012 with SQL Server 2012.
     anonymous access already given form Central Admin and Sitecollection level 
    Quick response will be highly Appreciated.

    Its need to be set  impersonate="true"
    <authentication mode="Forms">
        </authentication>
        <identity impersonate="true"
    />
    to resolve custom solution which need impersonate="false"
    Run command in evaluated privilege...

  • 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

  • Different Files Returned when using the Drop Down list on the Search Results Page

    Hi
    I have a result set of 22 documents when I select Date (Newest) from the drop down on the search results page.  The third document down is called "LL".
    If I now select Date (Oldest) I have a result Set of 22 documents. However, when I move to the second page.  The number of documents has reduced to 20 documents and my document "LL" which I would have expected to be the third from bottom document
    is not there.
    Am I doing something wrong here ?  Search is OOTB.  I have added some refiner columns.
    Regards
    Nigel
    Nigel Price NJPEnterprises

    Hi Nigel,
    It is by design. The "About x results" is presented when the total number of results is uncertain, and that is when collapsing (i.e. duplicate detection in this case) is enabled and the result set is partially processed. By default, a result page
    shows 10 results at the time. Therefore, for result sets with less than or equal to 10 results you will always get an accurate number of results and hence “About” is omitted. For more than 10 results you will get the “About x results” on the first page until
    you get to the last page of results and only then we know the exact number of results and hence can omit the “About”.
    Note that when you page out in the result set you will notice that the X in the “About X results” can vary quite a lot. That is because the total number of results is estimated based on the collapsing done so far. This is a common way of doing it by other
    search engines as well.
    Here is a simlar post for your reference:
    http://spbreed.wordpress.com/2013/09/14/sharepoint-2013-solution-to-inconsistent-search-results-count/
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Somehow the settings changed so the search results page has text so small that I can't read it

    when I launch firefox the initial page is find. I type in a search phrase, and the search results page comes up with print so small I can't read it. I can't find any way of changing the "view" of the results pages.

    See this:
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • How to create side Navigation in a OAF Page**Urgent

    Hi All,
    please let me know the steps to create Side Navigation in an OAF page.
    thanks,
    Sowmya.

    It is always better to first start searching first in dev guide... then old threads inforums.... else raising the thread.
    --Mukul                                                                                                                                                                                                                                                                                                   

  • Google search result page jumps back to top when opening a result in a new tab

    hello
    when searching from www.google.com, using 100 search results per page.
    i will scroll down the page, find a hit worth looking at, right click on it to open it in a new tab, and then immediately the search result page will jump back to the top.
    whereupon i will have to again scroll down to where i was to look a subsequent search results :-(

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Dropdowns on google search results page stopped working. why?

    i did not install anything. but my dropdowns and expand (+ button) on google search results page just stopped working.
    http://img.skitch.com/20090923-dg6mg9heppis5y9iynaetdsdws.jpg
    on this above image -
    - i cannot expans "show options?
    - i cannot see settings dropdown in the top right hand corner
    all this works in firefox. stopped working in safari.
    i have safari 4.0.3 installed.
    10.6.1 OS.
    anybody else have this problem?
    found a solution?

    strangely enough, dropdowns on maps search page works.
    i am totally lost as to why this could be happening.
    i have glims-beta for safari 64bit installed. could it be due to glims?

  • UIX: How to build multiple form search result page?

    I was wondering what UIX components I should use to build UIX search page that will return results in similar to Amazon.com-search-result-page? Currently UIX search page shows results in a read-only table. I need to display results in more user friendly way, one below the other where each row will be shown in read-only form manner (ie with messageTextInput components).
    And, say I want to show 10, 20, ... records per page. Actually similary to this forum search engine...

    See the problem is that I do not want to show results in the table. I am wondering how eBay, Amazon and other sites display these results in a page? When they return search result, all records are displayed one below each other but not in the table. right? Or maybe the table is just formated in a different manner? How?

  • Can't select text on a safari search results page

    Hi, I'm using an Ipad 3 I have safari sset to use the google search in settings
    but when I search for something and it shows the results page I can only select links holding my finger on the text below the link does nothing.
    sometimes the answer i'm looking for is in the text and I can just copy it instead of having to click the link to see it.

    I found out that you gotta do a double tap and hold the only problem is its cumbersome and it only works if safari is set to search google or yahoo if it's set to use bing it does not work at all..
    I've added the code below which will unlock the text select feature when selecting text on a search results page
    I  wrote this java script which allows you to just press and hold on the text to select it.. gets rid of having to double tap and hold and acts like select does on all the other apps. It will also work if your search engine is set to bing.
    to use you will need 2 book marks 1 book mark is for google & yahoo the other is for bing
    add any book mark then go into it and edit it, in the title type "Unlock Text Selection"
    just below the title paste this javascript in
    javascript:void(s = 'hdurj123');  s = '(' + s + ')';  x = new RegExp(s,  'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn;  b =  document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid  + ' style=\'color:#000;background-color:white; font-weight:bold;\'>hdurj123</span>'); void(document.body.innerHTML =  b);
    then save it under the book marks bar
    create a second bookmark and edit it
    in the title type "Unlock Selection Bing" and below that past this java script in
    javascript:void(s = 'results');  s = '(' + s + ')';  x = new RegExp(s, 'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn; b = document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid + ' style=\'background-color:white; font-weight:bold;\'>results</span>'); void(document.body.innerHTML = b);
    if your search engine is set to yahoo or google:
    fire up safari and do a search for something
    when the search results show click on the bookmark "Unlock Text Selection"
    now you will be able to just press and hold on the text to select it and if you move it around you can select individual words.
    if your search engine is set to bing
    fire up safari and do a search for something
    when the search results show, click on the bookmark "Unlock Selection Bing"
    now you will be able to select text with just a press and hold and even individual words
    this only works for search results pages I tried it on a page after I clicked the link and it caused safari to display the page source instead of the page.. I just use it for searches
    here's an example of setting up the bookmark:
    here's what it looks like on a bing search if your search engine is set to bing, in settings:
    you can see that I was able to select the individual words, *** if your in portrait you may have to zoom in a bit *** landscape works without having to zoom at all

  • Unable to open pdf files from search results page in Office 365 site

    Hi folks,
    I am getting this issue since a while now. In office 365 site, if I click on links that points to pdf files in search results page, I get this -
    “The filename, directory name, or volume label syntax is incorrect”. 
    These pdf files are stored in the same site and I am able to open them in adobe reader directly from the document library but not from the search results page.
    I have already gone this post and doesn't help me -
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/545efcc6-b748-4df8-aee0-7f57f778ad1e/sharepoint-2010-opening-pdfs-in-search-results-the-filename-directory-name-or-volume-label?forum=sharepointgeneralprevious
    Any help or pointer is much appreciated.
    Thanks,
    Manvir
    Manvir

    Hi,
    Besides pamma has suggested, here are similar issues, you can take a look at:
    http://unsolicitedbutoffered.blogspot.com/2014/01/quick-fix-volume-syntax-error-when.html
    http://crowdsupport.telstra.com.au/t5/T-Suite-Applications/There-was-an-error-opening-this-document-The-filename-directory/td-p/197425
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Lisa Chen
    TechNet Community Support

Maybe you are looking for