I just installed the uBlogsy in a 7.2.0 Umbraco site and found that that the social media links weren't getting rendered. The reason was that it compared a value of "1" instead of a value of "True".
var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia"); if (showSocialLinks == "1")
var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia"); if (showSocialLinks == "True") // BUG was "1"
uBlogsyPostShowPost.cshtml RenderSocialMedia
I just installed the uBlogsy in a 7.2.0 Umbraco site and found that that the social media links weren't getting rendered. The reason was that it compared a value of "1" instead of a value of "True".
var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia");
if (showSocialLinks == "1")
var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia");
if (showSocialLinks == "True") // BUG was "1"
Thanks for the bug report.
is working on a reply...