How can I find my draft blog posts?

Say you have a number of groups, and each of them has a blog application, and you create a draft blog in one of them.

Then you go away for a bit, come back, and you scratch your head and go "where was that blog post?"

Short of going through each application and trying to find the draft blog post, and assuming you don't have administrative rights to run an API query, or a database query, and you only have the user interface.

How do you find it?

  • Hi  

    The easiest way that I have found to get back to it is by saving the Blog Draft URL. You can get this URL while you are creating the draft blog post and bookmark it in your browser bookmarks to easily get back to. The URL I usually find by: 

    1. Click save as draft on the blog post

    2. Once I get a message saying it was saved as a draft - from that same page I hover over the pencil icon

    3. I click on manage blog

    4. I click posts

    5. I see my draft at the top of the list and under the unpublished tab

    6. I click on it and then right click on view and save that URL which will bring me back to that draft.

  • The easiest way that I have found to get back to it is by saving the Blog Draft URL

    Unfortunately, that's the problem for a lot of users, they don't know to do that ahead of time.

    I have the time to get lost around the site and be forced to use the site because we do, but members of the public don't, and by the time I need to go back and tell them "oh you should have..." they've already decided it's 3 steps more than they've had to do on other sites and they leave.

    You can get this URL while you are creating the draft blog post and bookmark it in your browser bookmarks to easily get back to. The URL I usually find by: 

    Thanks for taking the time to lay out steps.

    Ultimately for the element14 Community where we use verint v12, we have a lot of groups, and members need to somehow know that they have to go into the group, and then into the application, and then open the pencil, and then look to blog posts, and then click unpublished to find the draft blog posts.

    As opposed to on Jive, they went to their user profile, and looked at 'my content' and could see their blogs, and blogs that were in draft, regardless of what group they're in.

    So many steps down the navigation tree, fatigues our users terribly.

  •   I agree with you on the difficult experience for users in finding these drafts. A majority of our blogs are written only by our employees, so I'm slightly less concerned about the look and feel (versus for content creation by our customers) but the same principles/challenges apply. To work around the challenges, I've done a few updates that aren't perfect, but better than nothing:

    • I created a guide in our site help documentation for easy reference and so if someone searched for the words "blog draft," they'd come across this. You can see the wiki page for that here: https://sugarclub.sugarcrm.com/community-help/w/knowledge-base/327/how-to-find-a-blog-post-draft
    • I updated our "Blog - Create/Edit Post" widget sitewide so as to make it more direct and intuitive, only showing the fields that are most relevant to our use cases in the Write tab, and moving everything else to the Advanced Options tab: 
    • I added a link below the Post & Save as Draft buttons to the aforementioned wiki page so people could more easily find it during the process of writing the draft (awareness that it exists is better than nothing) 
    • started work on a contextual way to get to the draft menu, but I didn't finish and had to put the work aside for a little while. In these two images, the highlighted text leads to the flyout menu :
        

      • If you want to try it out, the code is:
        Fullscreen
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        <!DOCTYPE html>
        <html>
        <body>
        <p>After clicking "Save as Draft", click the link below to see additional options about your draft, including how to view the unpublished version:
        </p>
        <p id="currentpage"></p>
        <script>
        document.getElementById("currentpage").innerHTML =
        window.location.href + "#_cptype=panel&_cpcontexttype=Application&_cppanelid={insert your panel ID here}&tab=notpublished";
        </script>
        </body>
        </html>
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX