How to hide libraries from breadcrumb in SharePoint 2013?

Hi,
How to hide libraries from breadcrumb in SharePoint 2013? just we want to display parent and least node like below,
Home Site > Test page
not like,
Home Site > Pages > Test page
Please help us to resolve this.
Thanks., Prakash

hi
OTB breadcrumb have many problems, e.g. it doesn't work properly also with friendly urls. The simplest way is to create custom breadcrumb, e.g. as shown here:
Building breadcrumbs the way you want it in SharePoint 2010.
Blog - http://sadomovalex.blogspot.com
Dynamic CAML queries via C# - http://camlex.codeplex.com

Similar Messages

  • Disable/Hide Blog from Mysite in SharePoint 2013

    Hi All,
    Do we have any chance to Disable/Hide creating blog option in Mysite 2013? When user accessing Mysite for the first time a new site collection is creating, any chance to avoid this? Do we have any chance to restrict users to create a sub site under mysite
    2013?  
    Your help will be appreciated.
    Thanks,
    Nisanth

    Hi Nishant,
    Hope the below links helps you
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/73a81d79-6f90-4256-bbba-dbb107419a68/hide-blog-feature-from-mysite-in-sharepoint-2013?forum=sharepointdevelopment
    http://wellytonian.com/2012/10/restricting-permissions-on-mysites-sharepoint-2013/
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/ceb9a2df-f029-4ac8-b225-7627d114d682/sharepoint-2013-prevent-mysite-users-from-creating-subsite-except-allow-blog-site?forum=sharepointgeneral
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • How to hide ribbon from all item view for particular user group

    hi friends
    how to hide ribbon from all item view of particular list for specific user group.
    using OOB functionality or javascript. 

    Hello,
    Use this codeplex tool to hide ribbon to user group:
    http://spribbonvisibility.codeplex.com/
    If you don't want to use above tool then you have to add SPSecuritytrimming in "Rajiv Kumar" code for filtering based on user group permission.
    http://www.topsharepoint.com/hide-the-ribbon-from-anonymous-users
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to create a Document Set in SharePoint 2013 using JavaScript Client Side Object Model (JSOM)?

    Hi,
    The requirement is to create ""Document Sets in Bulk" using JSOM. I am using the following posts:-
    http://blogs.msdn.com/b/mittals/archive/2013/04/03/how-to-create-a-document-set-in-sharepoint-2013-using-javascript-client-side-object-model-jsom.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/1904cddb-850c-4425-8205-998bfaad07d7/create-document-set-using-ecma-script
    But, when I am executing the code, I am getting error "Cannot read property 'DocumentSet' of undefined "..Please find
    below my code. I am using Content editor web part and attached my JS file with that :-
    <div>
    <label>Enter the DocumentSet Name <input type="text" id="txtGetDocumentSetName" name="DocumentSetname"/> </label> </br>
    <input type="button" id="btncreate" name="bcreateDocumentSet" value="Create Document Set" onclick="javascript:CreateDocumentSet()"/>
    </div>
    <script type="text/javascript" src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.2.min.js"> </script>
    <script type="text/javascript">
       SP.SOD.executeFunc('sp.js','SP.ClientContext','SP.DocumentSet','SP.DocumentManagement.js',CreateDocumentSet);
    // This function is called on click of the “Create Document Set” button. 
    var ctx;
    var parentFolder;
    var newDocSetName;
    var docsetContentType;
    function CreateDocumentSet() {
        alert("In ClientContext");
        var ctx = SP.ClientContext.get_current(); 
        newDocSetName = $('#txtGetDocumentSetName').val(); 
        var docSetContentTypeID = "0x0120D520";
        alert("docSetContentTypeID:=" + docSetContentTypeID);
        var web = ctx.get_web(); 
        var list = web.get_lists().getByTitle('Current Documents'); 
        ctx.load(list);
        alert("List Loaded !!");
        parentFolder = list.get_rootFolder(); 
        ctx.load(parentFolder);
        docsetContentType = web.get_contentTypes().getById(docSetContentTypeID); 
        ctx.load(docsetContentType);
        alert("docsetContentType Loaded !!");
        ctx.executeQueryAsync(onRequestSuccess, onRequestFail);
    function onRequestSuccess() {       
        alert("In Success");
        SP.DocumentSet.DocumentSet.create(ctx, parentFolder, newDocSetName, docsetContentType.get_id());
        alert('Document Set creation successful');
    // This function runs if the executeQueryAsync call fails.
    function onRequestFail(sender, args) {
        alert("Document Set creation failed" + + args.get_message());
    Please help !!
    Vipul Jain

    Hello,
    I have already tried your solution, however in that case I get the error - "UncaughtSys.ArgumentNullException: Sys.ArgumentNullException:
    Value cannot be null.Parameter name: context"...
    Also, I tried removing SP.SOD.executeFunc
    from my code, but no success :(
    Kindly suggest !!!
    Vipul Jain

  • How to deploy SSRS 2008 reports to Sharepoint 2013.

     Hi,
       Can some one guide me how to deploy SSRS 2008 reports to SharePoint 2013 by giving the exact steps from where to begin. We have all our reports deployed in SharePoint 2010.Need to migrate those reports to Sharepoint 2013 instance. I
    also want to know how and where exactly we modify the connection strings to manage the data sources for the reports . Since I am very new to this field I am not able to properly understand other sites i have gone through . I have gone through the prerequisites
    also.Kindly help me by providing step by step method.
    Thanks,
    Mridhula

    If you don't just want to upgrade your database, simply open the report project (which should be on your local file system) and edit the report properties, changing the Report Server URLs appropriately to the new SharePoint server URLs.
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Breadcrumb in SharePoint 2013

    Hi,
    I'm trying to customize the SharePoint breadcrumb. There are three types of pages in SharePoint (layouts, publishing & forms) which uses SPXmlContentMapProvider, CurrentNavSiteMapProviderNoEncode
    & SPContentMapProvider sitemap providers respectively. I followed the link http://www.sharepointblues.com/2010/02/08/a-single-breadcrumb-for-all-sharepoint-pages/ wherein
    I created a custom user control and added that in master page by registering it as follows :-
    <!--SPM:<%@Register TagPrefix="Navigation" TagName="Breadcrumb" Src="~/_controltemplates/15/Breadcrumb/Breadcrumb.ascx" %>-->
    <div>
                      <!--SPM:<SharePoint:AjaxDelta id="DeltaBreadcrumbDropdown" runat="server">-->
                    <!--MS:<asp:ContentPlaceHolder id="PlaceHolderTitleBreadcrumb" runat="server">-->
                      <!--MS:<Navigation:Breadcrumb id="Breadcrumb" runat="server"  />-->
    <!--ME:</asp:ContentPlaceHolder>-->
                    <!--SPM:</SharePoint:AjaxDelta>-->
                        </div> 
    The issue I'm facing is : I'm getting arrow(PathSeparator) in forms pages but no arrow in layouts pages like settings.aspx or viewlsts.aspx etc..In code also , I used provider.pathseparator property but no success :(..
    Vipul Jain

    Hi Ashok,
    According to your description, my understanding is that you want to restore breadcrumb in SharePoint 2013.
    It is not necessary for you to use Visaul Studio 2012. There is an easy way to achieve it, you only need to change the master page with SharePoint Designer 2013. Open the master page with SharePoint Designer 2013, then search for the term “GlobalBreadCrumbNavPopout”
    or “ms-breadcrumb-dropdownBox”, change the visible attribute to “true” and remove the tag  style=”display:none;”.
    Of course, you can also achieve it from code, I recommand using an AdditionalPageHead delegate control
    More information, please refer to the links:
    http://sharepointwithme.wordpress.com/2013/05/29/breadcrumb-in-sharepoint-2013-where-is-it/
    http://www.sharepointjohn.com/sharepoint-2013-restore-breadcrumb-navigate-up-navigation/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to customize top navigation css in SharePoint 2013?

    Hi All,
    How to customize top navigation css in SharePoint 2013?(Want to add colors for each link in the navigation)
    My current page is like-
    Expected-

    Hi Sam,
    Please check the following article about how to style the top navigation with custom css.
    How to: Brand snippets by using CSS in SharePoint 2013
    Thanks
    Daniel Yang
    TechNet Community Support

  • How to Implement custom share functionality in SharePoint 2013 document Lib programmatically?

    Hi,
    I have created custom action for Share functionality in document library.
    On Share action i'm showing Model pop up with Share form with addition functionality.
    I am developing custom share functionality because there is some addition functionality related to this.
    How to Implement custom share functionality in SharePoint 2013  document Lib pro-grammatically?
    Regards,
    - Siddhehswar

    Hi Siddhehswar:
    I would suggest that you use the
    Ribbon. Because this is a flexible way for SharePoint. In my project experience, I always suggest my customers to use it. In the feature, if my customers have customization about permission then i can accomplish this as soon
    as possible. Simple put, I utilize this perfect mechanism to resolve our complex project requirement. Maybe we customize Upload/ Edit/ Modify/ Barcode/ Send mail etc... For example:
    We customize <Edit> Ribbon. As shown below.
    When user click <Edit Item>, the system will
    render customized pop up window.
    Will

  • How to implement remote blob storage in SharePoint 2013

    How to implement remote blob storage in SharePoint 2013 

    Try below:
    http://blogs.technet.com/b/wbaer/archive/2013/05/23/deploying-remote-blob-storage-with-sql-server-2012-alwayson-availability-groups.aspx
    If this helped you resolve your issue, please mark it Answered. You can reach me through http://itfreesupport.com/

  • Generate reports from lists in SharePoint 2013 (Office 365)

    Hello everyone,
    We are in the need to generate reports from lists in SharePoint 2013. The reports would do data mingling between lists (like a relational database) and generate the reports in HTML and maybe a link to pdf on the SharePoint site.
    We are currently generating reports in Access. This is an issue for two reasons:
    Reports cannot be generated on the fly. Whenever we want reports in pdf form, we have to go into Access and run our reports macro written in VBA. It essentially generates the reports as pdf into our synced SkyDrive, which syncs it to our SharePoint site
    Report generation cannot be done by the client. This is due to the same concept as (1). We need to generate reports in Access.
    Is there any way to do this in SharePoint 2013? Are there any apps that do this?
    Any guidance or help would be appreciated.
    FYI: Our SharePoint server is hosted on the Office 365 network. It is not a local system.
    Thanks

    One option is to run the info into a Word Template and then run Word Automation Services to convert to PDF, but I think you're still going to run into some similar issues.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • Migration from Hummingbird to SharePoint 2013 Online (office 365)

    Hi,
    Please suggest tools/approach for migration from Hummingbird to SharePoint 2013 Online.
    Already found tool Tzunami, Please suggest other tools.
    http://www.tzunami.com/
    Regards,
    Divyesh Lappawala

    This blog includes links to most, if not all, the common migration tools. Have a look through them to see which support Hummingbird as a source.
    http://blogs.technet.com/b/ptsblog/archive/2013/11/04/migrating-file-shares-to-sharepoint-online.aspx

  • How to Enable Anonymous access to a SharePoint 2013 site e.g for specific site,list etc..

    Hi All,
          I'm working on an extranet and i would like users to be able to fill a form on the site.
    Since i'm going to use sharepoint 2013 how can i configure sharepoint to use both anonymous access and windows authentication at the same time.
    I know for sure it can be done but what can be allowed for anonymous access e.g specific list site etc..
    I would need to make some area available as anonymous e.g a whole site as  i would like to brand it a little to host the form.Any tips of who has configured similar would be appreciated

    Hi Patrick,
    Thanks for posting your query, Kindly follow the below mentioned steps to enable Anonymous access to a SharePoint 2013 site.
    In Central Administration, under Application Management., click Manage web applications.
    Select the web application you want to enable anonymous access for.
    In the Security group on the ribbon, click Authentication Providers.
    In the Authentication Providers dialog box, under Zone, click Default.
    On the Edit Authentication page, select the Enable anonymous access check box.
    Click Save.
    Close the Authentication Providers dialog box.
    Also, browse the below mentioned URLs for more details
    http://blog.cloudshare.com/2012/10/15/how-to-enable-anonymous-access-to-a-sharepoint-2013-site/
    http://www.sharepoint-journey.com/how-to-enable-anonymous-access-in-sharepoint-2013.html
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Nokia N97 How to hide images from the photo browse...

    I'm not even going to ask about how to hide sensitive images, i just deleted them, but still
    there are several programs that use images for they're normal behaviour, i had this same issue
    with my nokia n95, but i simply set the image atributes of the pictures i didn't want to show in the photo browser,
    and that solved the problem, but with my new n97 this is of no use, i also tryed setting the image atribute as sys file
    and that did not solvet either... Please help, i do not like having 500 images from a software showing up in my gallery...
    Thanks in advance

    how to move image from gallery to a certain album (not copy)

  • How to hide options from InfoView's "Schedule Report Page"?

    Hi,
    We are using Business Objects XI R2 InfoView (Java version) to schedule the reports.
    Whle schedling the reports, schedule page displays the following option to the users -
    1. When
    2. Database Logon
    3. Filters
    4. Destination
    5. Format
    6. Print Settings
    7. Server Group
    8. Events
    9. Parameters
    And I need to display only three options (When, Format and Parameters) to the user and want to hide the rest of the options from the user.
    Please let me know how to acheive this using the InfoView (Java version)?
    Thanks,
    Vicky

    Thanks for the reply.
    I do not want the user to enter / change the database logon information and other setting of the report. As I set those info using the CMC.
    And writing the our own pages using SDK will take lots of efforts and require java professionals for that.
    I only need to hide those options please let me know how to hide them.
    Thanks.
    Vicky

  • How to hide MastHead from iView

    Hi Experts,
    I have created linktoURL UI element for WD program1. I am calling WD program2 using linktoURL UI element of WD program1. When I am clinking on the linktoURL UI element, iView of WD program2 gets open successfully. In the iView MastHead (company logo, logoff link, search button, top level navigation etc) is getting displayed. I don't want to display these details. How to do so?
    I have set the Launch in new window propert as "Display in seperate headerless portal window" for the iView of WD Program2. However this is not helping.
    Can you please let me know how to hide the masthead, company logo, logoff link, search button, top level navigation etc from the iView.
    Regards,
    Gary
    public static void wdDoModifyView(IPrivateAutoSettlementAppView wdThis, IPrivateAutoSettlementAppView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
         wdContext.currentContextElement().
         setUrl("https://ruepd.mycompany.com:50001/irj/portal?" +
                     "NavigationTarget=ROLES%3A%2F%2Fportal_content%2Fcom.mycompany.all.folder.mycompany%2Fcom.mycompany.ep.folder.enterprise_portal%2Fcom.mycompany.portal.folder.roles%2Fcom.mycompany.portal.folder.employee_self_service%2Fcom.mycompany.portal.role.employee_self_service%2Fcom.mycompany.portal.workset.employee_self_service%2Fcom.mycompany.portal.workset.area_travel_expenses%2Fcom.mycompany.portal.page.create_expense_report_Auto&DynamicParameter=trip_number%3D"+
                 (wdContext.currentContextElement().getTripNumber()).replaceAll("^0*","") +
                   "%26mode%3Dcreate&TarTitle=Create%20Expense%20Report");

    Hi,
    If u have set Launch in new window property as "Display in seperate headerless portal window", this should work. Hope you have set the property value for the proper iview.
    Also if you are using a link with NavigationTarget as in wdDoModify, append &NavMode=3 at the end of url  as below. This will hide the mast header
    public static void wdDoModifyView(IPrivateAutoSettlementAppView wdThis, IPrivateAutoSettlementAppView.IContextNode wdContext, com.sap.tc.webdynpro.progmodel.api.IWDView view, boolean firstTime)
         wdContext.currentContextElement().
         setUrl("https://ruepd.mycompany.com:50001/irj/portal?" +
                     "NavigationTarget=ROLES%3A%2F%2Fportal_content%2Fcom.mycompany.all.folder.mycompany%2Fcom.mycompany.ep.folder.enterprise_portal%2Fcom.mycompany.portal.folder.roles%2Fcom.mycompany.portal.folder.employee_self_service%2Fcom.mycompany.portal.role.employee_self_service%2Fcom.mycompany.portal.workset.employee_self_service%2Fcom.mycompany.portal.workset.area_travel_expenses%2Fcom.mycompany.portal.page.create_expense_report_Auto&DynamicParameter=trip_number%3D"+
                 (wdContext.currentContextElement().getTripNumber()).replaceAll("^0*","") +
                   "%26mode%3Dcreate&TarTitle=Create%20Expense%20Report"+"&NavMode=3");

Maybe you are looking for

  • How do I convert a PDF with links to html?

    I created a JPEG in Photoshop elements 9 and then used acrobat to overlay some links on the Jpeg.  I then saved the jpeg as a PDF.   How to convert this file to HTML so I may upload it to the web with all links active and original jpeg intact?  Havin

  • We use adobe acrobat X pro, how can I convert pdf to worl document?

    we use adobe acrobat X pro, how can I convert pdf to worl document?

  • Images not appearing in emails

    Randomly today I'm not seeing images in most of my emails. Have always had the checkbox for "Display Remote Images" checked. They're coming from a wide variety of sources, so doesn't seem to be about the senders.

  • Trobleshooting Analysis Atuh

    Hi experts, Can anyone help me troubleshoot my BI security issue?  Iu2019m getting this (EYE 007) error and couldnu2019t find out, what is the issue.  I have been running Trace (RSECADMIN) and looking at this error and no clue how to resolve it.  Fol

  • Setup system for Oracle practice

    Hi, Because I am preparing for OCP DBA 9i test, I want to set up environment on my personal Laptop so that I can do practice simultaneously. Could you share me what software I need and what should be system requirements? My laptop configuration: Dell