Chiliplanter på chillicious.dk

18. august 2010 by Thomas Stern

Lidt reklame !!!!!

Så har jeg endelig fået nogle fine chiliplanter som sælges på mit lille hobbyprojekt

chillicious.dk her er et llink hvo i kan se dem fine chiliplanter desværre er der kun ganske få tilbage så man skal skynde sig lidt hvis man ønsker at få fat i en af de fine sager.

Men tjek dem ud.

 

Content editor And Core Editor open at the same time

6. juli 2010 by Thomas Stern

For thoose of you that where attending the dreamcore in Copenhagen, know about this nice little easy piece of code, Actually it is One line of code that can help you a lot in sitecore backend. I have for while been doing a lot of work in the core content editor and offen had to switch back and forth between the Core content editor and Master database content editor. So after seen Raul Jimenz Presentation af Dreamcore aI thought wow cool I what the same functionality just with a minor twist, I would like my shortcut to be placed in Tray of the Desktop of the sitecore backend. I know this is easy to do, but sometimes easy to do things get overlooked I now I did for this. Okay here we go, lets start with adding the an icon with an click action in the tray let's start by going to the core editor go to:


/sitecore/content/Applications/Desktop/Tray/CoreContentEditor

and insert an item as shown

coredb1

 

 

tray3
Okay now open the command.config file for you sitecore solution and add the with reference to to command you wrote in core editor of sitecore. Remenber that syntax is FullClassName,NameSpace.

<command name="Tray:CoreContentEditor" type="CoreContentEditor.TrayCommandCoreContentEditor,CoreContentEditor" />


Now tho the code it is simple one line of code.

namespace PT.CoreContentEditor
{
  public class TrayCommandCoreContentEditor : Command
  {
  
    public override void Execute(CommandContext context)
    {
      Sitecore.Shell.Framework.Windows.RunApplication("Content Editor", "sc_content=core");
    }
  }
 
}


And now let's see it in action


openatthesametime


Again I know it is easy to do, but i think it is so nice to could switch back and forth without having to open the content editor everytime. Note you could also make a shortcut for the webdatabase. Changing sc_content=core to sc_content=web.

What will make users comment blogposts ?

15. juni 2010 by Thomas Stern

 

I have had this blog for sometime now, and i can see more and more people have started read my posts, But not many or more correct not any, are writing comments to my posts. That made me think either I'm writing easy to read and understand and self explaining posts, but i seriously doubt that, or the post are so bad and not worth commenting, I hope this is not the case.

So what could I do to improve my blog, and why don't my visitors add comments. So my question is what will make you write comments for blogposts in the future ?

With out any comments or feedback it is hard to improve the posts and this blog overall.

With comments each post becomes more interactive and hopefully can help even more people.

So let me know if you have any specific themes or question you would like me to blog about, or how to improve the posts so you will and commets.