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

Category: Miscellaneous

Miscellaneous things about our development team or website

Blogging DNN on iPhone/iPad with SunBlogNuke

dnn blogging

Now mobile devices are essential tool for our life & work, such as iPhone & iPad. So it will be excellent if you can blog on the go with those devices, sharing any ideas or photos from anywhere and keeping your loyal blog readers engaged from your interesting things - that means you work pretty much everywhere. Do you like this very comfortable way of living? Let us show you how to blogging dnn blog module - SunBlogNuke on iPhone/iPad with the awesome app – BloggerPlus.

Read the rest of entry »

Getting Started with CommentsPlus

CommentsPlusAs you know, we released a new cross-module & highlight comments solution based on DotNetNuke platform a while ago. We hope to build a universal comments/voting system to be integrated with across multiple different modules on a dnn site. And this awesome module was announced as "Comments+". You may be interested in what sets Comments+ apart from other DNN comment modules, please visit the post Ultra DNN Comments System - CommentsPlus in details. Today we would like to show you how to get started with CommentsPlus. Until now, this module allows you to add the popular comments engine Disqus or Facebook in any page of your DotNetNuke website. So the tutorial will cover Disqus & Facebook section.

Read the rest of entry »

Ultra DNN Comments System - CommentsPlus

If you are focusing on our dnn products, you should know this new awesome module - comments+. We would like to make it as the cross-module & highlight comments solution based on DotNetNuke platform, in other word, it will be a universal comments/voting system to be integrated with across multiple different modules on a dnn site. Until now, this module allows you to very easily add the popular comments engine, such as Disqus & Facebook comments, any page on your DotNetNuke website, and also attach it to a specific module on the page. Let us go through the super features in Comments+.

Read the rest of entry »

A Quick Patch for SunBlogNuke v4.0 – 4.2

Updated: Please upgrade to v4.2.5 (Fixed Version 4.2.5 for SunBlogNuke Available Now) with fixing the issue mentioned below.

If you are focusing on our Ultimate DNN Blog Module – SunBlogNuke, you should know that some release v4.x (the latest version is 4.2 until now) are available with LOTS of awesome features, such as threaded comment and custom fields. If you have missed those so cool things please visit our website for more details.  Today we would like to release a quick patch for fix issue where the Flashy Rotating 3D Tag Cloud Widget disappear and you should find the issue when you click to “View All Tag” from the TagCloud Widget. Please follow up some simple steps below:

  1. Download the patch from here, unzip it in the local machine and you should find the fixed script file blog.common.js.
  2. Find out the JavaScript folder - $YourRoot/DesktopModules/SunBlog/js.
  3. Replace the original one with the patch file – blog.common.js.

Note that you need to backup the original one at first. Hope it makes sense.

Blog your way and enjoy life. :)

The SunBlogNuke Team

Moving on to Build Ultimate DNN Blog Module

That is a brief buzz for our development team recently.

We are glad to tell you that our product is in active development and we are moving on as planned. Our guys are trying to enhance the Ultimate DNN Blog Module - SunBlogNuke and provide you the working and valuable product. In this stage we are focusing on the next building v4.0 in which we took more attentions on "Refactor". With refactor you will be able to extend more features easily. Plus, we make it stay flexible by reducing obstacles to changes so that you will respond to customers' requirements quickly. We hope that it will be the kind of beautiful, elegant and productive software.

BTW, also it will include some awesome features, like integration with Google reCAPTCHA, support for Vote Up/Vote Down and new theme configure process with providing thumbnail and preview feature. Please stay tune and it will be available to download. :).  Well. have a quick look at the screenshot about new theme configure panel:

Theme Config Panel

And we are looking forwards to your feedback. We know that the more feedback we get from our clients, the better our product will be and also we will know which areas require attentions next. So please tell us what you want most or leave your comment below if you are interested in Ultimate DNN Blog Module – SunBlogNuke. Thanks a lot.

More screenshots for third-party dnn blog module - SunBlogNuke

Some Screenshots about SunBlogNuke:

Clear Administrative Panel

Administrative_panel

Integration with Windows Live Writer and so easy to manage your posts

Integration_with_WLW

Free and extreme SunBlogNuke themes directory

Themes_directory

More will be available later. Please stay tune.

Migrate DotNetNuke Blog Entries into SunBlogNuke Module

As mentioned previously on that post Ultimate DNN Blog Module – SunBlogNuke Roadmap, we are trying to develop the import feature for SunBlogNuke. I have seen multiple posts around our forum asking if there were any migration tool away from the core blog module and well now there is! In this blog post I want to share a SQL script needed to successfully migrate all blog posts from the core blog to the SunBlogNuke module.

Read the rest of entry »

Launching the Theme Directory for SunBlogNuke Platform

Today we happily announce that we have launched this theme directory to provide SunBlogNuke themes of quality and integrity. We craft our themes with a goal of simplicity and professionalism and strive to inject each design with a dose of modest elegance. I believe that your website is not just a tool, it is an integral part of your identity. There you can browse through the posts to view the theme thumbnail and submit your ratings for the best of the bunch. Also the directory is a place for you to showoff your customized theme powered by SunBlogNuke. All submitted themes will be approved to our directory list. We welcome any tasteful theme powered by SunBlogNuke or DNN. So if you are Looking for the awesome SunBlogNuke themes? Here's the place to find them! Welcome to the Free SunBlogNuke Themes directory. Later we will provide you the more detailed information with the free download links. Please stay tuned. :)

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.

Purchase SunBlogNuke with the Lower Price

Hi, guys

There exists a great news for you today, if you focus on our products. Now we provide the alternative way to purchase SunBlogNuke except the snowcovered sale. That’s you can purchase it directly from our website. Well, while SunBlogNuke can be purchased from either Snowcovered.com or direct from our site. Both options will get you the same great module and the same great support. And if you purchase direct, the prices are discounted and you automatically receive free updates for a year. It is a good news for you, right?  If you would like to get the more information about purchase, please visit here.

Note: If you are previous customers, please get the new license information and support from that post. And if you have more questions, please feel free to contact us, or by sending e-mail directly to us at dnnsun@gmail.com. We will try to reply you ASAP.

The SunBlogNuke team

Pages: Prev12NextReturn Top