Category: Sitecore
Dear Sitecorians, to provide better experience to your website users sometimes you are asked implement a feature such as StoesNearByMe, EventsNearByMe or JobsNearByMe in your Sitecore solution. In such scenarios, basically you need two information: 1) User’s location (e.g latitude and longitude) 2) Search all stores, events or jobs near to user’s location. We have already …
This is a quick tip for all those who are using Sitecore.NET 8.0 rev. 150223 (8.0 Update 2) and facing hang issue while uploading Sitecore package. Solution: There are two options to get rid of this issue. Option-1: Move to next upgrade as it is known issue and resolved in Sitecore 8.0 Update 3, you can find it at official …
This post is related to my previous post where I illustrated how to deal with persona and pattern card programmatically. If you are working on such stuff and found below mentioned error in log, then this post may help you to understand why it is happening and how to get rid of this error. Message: Key …
Recently came across a very interesting requirement of analyzing user’s pattern based on search action performed by user on the site. Every webiste has one common functionality implemented – site search. Here you can hook your code to understand user’s pattern by observing the keywords user is searching. For example: whenever user search terms like software, programming or computer …
Recently came across a very small but interesting question – how to hide any section or page from live website in Sitecore? Well, as Sitecore is famous for its flexible architecture which can definitely accommodate this requirement. But Sitecore newbies are not aware about it and on top of that – you will not find any …
Most of Sitecore developers are now using TDS and GlassMapper in their solution. It’s an awesome combination! But you may find some challenges when you are setting up auto code generation feature of TDS by using GlassMapper. One of such challenge is facing the code generation error as shown below. So are you facing same error? …
This post is inspired from Sitecore Documentation article Improve the performance of the Experience Editor ribbon. I will try to elaborate the same stuff by including step by step configuration and test case. For any website, one of the crucial things is to improve it’s performance. And one of the ways to gain the performance is to …
All of us know how to configure auto code generation in Sitecore TDS Project? It’s very simple – you just need to select Enable Code Generation as shown in below figure. But what if you want to exclude few items from this auto code generation? If you have such requirement then this post may help you. …
You can now take advantage of HTML5 Geolocation API in order to get user’s location details such as latitude and longitude. What was our requirement? 1) Whenever user visits our website, we want to track user’s location (e.g. latitude and longitude). 2) Page should ask to access location only one time during that session, it …
Wondering why your page is not getting postback when you select any dropdown item even-though you have set AutoPostback property to true? If so, then it can be fixed by adding below configuration in your web.config file under <typesThatShouldNotBeExpanded> section. System.Web.UI.WebControls.Repeater System.Web.UI.WebControls.DataList System.Web.UI.WebControls.GridView System.Web.UI.WebControls.ListView System.Web.UI.WebControls.FormView Microsoft.Reporting.WebForms.ReportViewer Telerik.Web.UI.RadGrid System.Web.UI.WebControls.LoginView System.Web.UI.WebControls.DropDownList