I installed the plugin as described, but no dice. Looked at TechCrunch's code, and they had a bunch of JavaScript includes I didn't, so I added those. Still no dice. But then I got a JavaScript error saying "recorderVersion not defined". Looked at TechCrunch's code.. "http://seesmic.com/Widgets/StandaloneRecorder.swf" was hard coded in instead of the "recorderVersion" in my JavaScript files.
I added these lines to the start of seesmic-wp-plugin.js, and then it worked:
var recorderVersion = "http://seesmic.com/Widgets/StandaloneRecorder.swf";
var playerVersion = "http://seesmic.com/Widgets/StandalonePlayer.swf";
I also had to add these lines to my WordPress header template:
<link href="/wp-content/plugins/seesmic-wp-plugin/seesmic-wp-plugin.css" rel="stylesheet" type="text/css" />
I suspect most people are not as persistent as me. It now works great though, but seems weird I have to do this. I'm using WordPress 2.5.
Reply to this problem