SunBlogNuke Team Blog

Share you with any news or development process about our dnn modules, such as status or release notes.

First time here? You may want to check out the blog archives, subscribe to the RSS feed, sign up for free email updates, or follow me on Twitter. Thanks for visiting!

Posts Tagged 'blogging'

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.

Switch Open Live Writer for DNN Blogging

Open Live Writer for DNN Blogging

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.

SunBlogNuke Runs well with DNN9

SunBlogNuke Runs well with DNN9

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.

Format Date Time with suffix like 1st, 2nd, 3rd, 4th

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.

Markdown Support with DNN Blog Posts

Markdown Support with DNN Blog Posts

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. :)

Integrated DNN Blog with Javascript syntax highlighter

What is Highlight.js?

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 :)

Extended Entries Support for SunBlogNuke

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:

extended-content

Also you can see the more features integrated with WLW, for example, keyword, category and slug etc. :)

Schedule DNN Posts Ahead of Time in SunBlogNuke

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:

  1. Begin to write your post via edit post panel or WLW client tool. scheduling-post
  2. Go to where it says PublishDate on the bottom of the Options section and adjust the time/date to reflect when you would like your post to be published. You will want to verify that your blog’s time is set up correctly to ensure the post appears when you want it to.
  3. Click "Save & Publish" action button to publish the post.
  4. The post will now appear in the Manage posts panel, but will not show on your site until the designated date/time. Yes, if you configure it into the past, it will post right away and show the designated date/time.

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

Feature Related Posts with Thumbnails on DNN Blog

Related Posts in dnn blog module

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.

[Kudos]DotNetNuke Blog Module In Depth Review

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 :)

Improved DNN Blog Traffic with Social Sharing

Social-Bookmark

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.

Pages: Previous123NextReturn Top
Copyright © 2009-2024 Ultimate DNN Blog Module - SunBlogNuke Powered by SunBlogNuke Corp