We are pleased to present below all posts tagged with 'blogging'. If you still can't find what you are looking for, try using the search box.
As you know, Window Live Writer is like Word for your blog. However, Windows 10 does not support Window Live Writer any more and you can not install WLW for blog writing/content. Luckly, the Open Live Writer is another alternative writer for blogging. Open Live Writer makes it easy to write, preview, and post to your blog.
Our DNN blog module SunBlogNuke straight out of the box comes ready to embrace any changes and always compatible well with the latest DNN core package DNN9. Not only we will apply any handy tools, such as SPA framework and Bootstrap UI framework, with our products, but also we assure that SunBlogNuke is still the best publishing tool with News, Magazine & Articles, for example Markdown support with better writing experience and the core Html/Text module is on road of integration.
Recently some client of our DNN blog module requested a customized feature, he wanted to out the posted time of SunBlogNuke in a format that included the two letter suffix added to the day number, like "December 25th, 2009" as opposed to "December 25, 2009". After some investigation, it seems this is not supported out of the box (not surprising really). Finally I found the MarkGwilliam’s post (How To Append 'st', 'nd', 'rd' or 'th' To Day Numbers in Dates) which provided a ".NET Framework friendly" to implement this behavior and therefore offers good reuse value and is intuitive for .NET developers to use. I thought that is what we want and then extended it in our customized way which allows SunBlogNuke developers to consume the code more easily and flexible. Now I shared the VB.Net Function below and hope it helps if you also have the similar requirement:
Protected Function FormatPostedTimeWithDayNumberSuffix(Optional ByVal format As String = "MMMM d{0}, yyyy") As String Dim dateTime As DateTime = Date.Parse(Entry.PostedTime) If Not Null.IsNull(dateTime) Then Dim formatTime As String = dateTime.ToString(format) Dim day As Integer = dateTime.Day Dim dayFormat As String = String.Empty Select Case day Case 1, 21, 31 dayFormat = "st" Case 2, 22 dayFormat = "nd" Case 3, 23 dayFormat = "rd" Case Else dayFormat = "th" End Select Return String.Format(formatTime, dayFormat) End If Return Entry.PostedTime End Function
If you have more better or elegant solution appreciate your comments here. Thanks a lot.
Even if DNN known as best CMS in .net platform, plus some excellent WYSIWYG editors, such as CKEdior and RadEditor, it interrupts writing with some weird issues from time to time; WYSIWYG makes it easy to write poor HTML. So we try to find alternative instead of WYSIWYG Editor, a quicker, more efficient way to publish web texts.
Markdown mirrors HTML. When you write in Markdown you’re thinking about structure and meaning, not appearance. Quality control is easier in Markdown than WYSIWYG.
With best blogging module #SunBlogNuke, we will help you get started into the wonderful world of Markdown in DNN! Blogging your way and enjoy life. :)
Highlight.js is a syntax highlighter written in JavaScript. It works in the browser as well as on the server. It works with pretty much any markup, doesn’t depend on any framework and has automatic language detection.
Project on Github
Next we would like to show you how to integrate DNN Blog with Javascript syntax highlighter - Highlight.js with some simple steps. Enjoying it soon :)
After integration SunBlogNuke with Window Live Writer, you may wonder where to find or what to replace the excerpt field in the built-in edit post panel. There is one elegant workaround – using the <!--more--> tag to mark the end of the excerpt. Fortunately, there is a setting property called "supportsExtendedEntries" in the wlwmanifest.xml depending on the feature. Please note that setting this value to true will allow the <!--more--> tag in your Window Live Writer.
What you need to accomplish is placing your cursor where you want the “Read More” tag and selecting “Split Post” from the “Format” menu. Then the collection page and simple entry partial will be modified to have a "Read More" link whenever there is extended content. Have a look at the screenshot as follows:
Also you can see the more features integrated with WLW, for example, keyword, category and slug etc. :)
Have you ever seen a blogger mention how important it is to schedule posts ahead? You know that there is a certain time in a day when each site gets its most amount of users or maybe you are going for a one week vacation, but you don’t want to abandon your blog. How do you fix these problems? Now it is generally a good idea to have a few posts scheduled ahead in case those things come up. If you are a SunBlogNuke user, you might not know that you have the ability to schedule posts ahead. It is actually quite easy! In addition to scheduling posts ahead, you can use old dates if you want your post to be dated sometime in the past.
Here is how to schedule your posts to be published at a different time and/or date:
This is a useful way to keep a few posts saved for a rainy day or to keep content showing up if an illness puts you out of commission for a while. You can also experiment with posting times to see what works best for you and your readers. It is more important for SEO if there exists scheduled posts in your website. Google love website and blog with continuous post and updates. If you are posting more then 8 post a day and then for the next few days no post, You are actually hurting your website authority and page rank. With scheduling you can keep your blog running and your blog will never run out of the post. Maybe you should know the fact that Schedule your Posts for the Best Success.
Good luck and happy writing.
The SunBlogNuke team
Today I would like to show you one alternative way to feature related posts on your dnn blog. That is a external plugin [LinkWithin]. You should know most blogging platforms now feature a number of third-party plugins that can display a list of related stories on your blog, or even on other blogs on the Internet. Typically, these plugins will look at how a story was tagged and then display a short list of similar stories that use the same keywords. LinkWithin is the newest contender in this market. The plugin looks at tags, but it also analyzes other factors like relevancy, popularity, and recency. Unlike similar plugins, however, LinkWithin doesn't just display a list of headlines underneath each post, but also a thumbnail with a picture from each post, which makes it far more attractive than most of its competitors and is why I recommend it for you here.
That is one review post about our blogging module - #SunBlogNuke in depth, and you will find compare SunBlogNuke vs other DotNetNuke blogging modules and why clients choose our DNN modules. And the most benefits you get from us and what SunBlogNuke is the most flexible and user friendly module of the bunch. If you are hesitant to order our blogging module, I think that this review is what exactly you need go through :)
As the most popular #DNN #Blog #Module, SunBlogNuke would like to build better user experience for your blog writing & shared actions. Also clients ever raised issue that the bookmark configure looks little difficulty and no idea how to make it work. Fortunately, the SunBlogNuke v5.0 simplify the settings configure without losing flexibility.
Senior developer for dnn solution & founder of ultimate dnn blog module - SunBlogNuke, which is the best publishing tool for DotNetNuke (DNN) websites, with a focus on simplicity, ease of extensibility, web standards and usability. It includes a great suite of modules for blogging on your DNN site.
Re: DNN7 Blog Integrated with ModuleSearchBase
B- please FIX the bugs...driving me nuts!!!! Error: Edit blog entry is currently unavailable. DotNet...
-- kkuhns
Re: Fighting DNN Bugs Ⅱ: Why Can't Remove Google Analytics
Thanks a lot for your reference and it should be helpful for community guys. :)
-- Baldwin
please ensure you log any bugs to http://support.dnnsoftware.com - i searched and couldnt see this one...
-- Cathal
Re: Build DNN Rotator with GalleryPlus
How do you place the gallery within a blog entry. I saw in the below demo that a token was used ([SL...
-- Mary
Re: Enhance DNN Article Footers with Author Profiles
Please make sure that the bio field of this current host user is visual to public(you should find it...
I'm trying to get the bio to show up for a host user but it comes up blank. Can you replicate this issue...
-- Lucas
Re: [Kudos]DotNetNuke Blog Module In Depth Review
Yes, the latest package is absolutely compatible well with DNN7 and the performance was enhanced a lot...
Is it compatible with DNN 7
-- swayam
Re: SunBlogNuke 6.0 Technology Preview
No, actually the v6.0 had been available to downlaod for upgrade - http://www.sunblognuke.com/blog/entryid...
this article says that version 6.0 is not for production use. the article is from may 2013... is sun...
-- pekai
The opinions expressed here in are my own personal opinions and do not represent my employer's view in anyway.
© Copyright 2009 - 2024