SharePoint 2013 - Hide search results web part if no results

// Put this code into Control Display Template - only applies if you aren't editing the page AddPostRenderCallback(ctx, function() { if (!Srch.U.isPageInEditMode() && (ctx.DataProvider.get_totalRows() > 0)){ $(ctx.DataProvider._element).parentsUntil('.ms-webpart-zone').last().hide(); } });

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.