In my test site running 3.4.2 I am attempting to use the sample shortcode under the description of this plugin by copying and pasting into the HTML view. It does display the Prezi but extremely small even though the settings are substantially larger.
[prezi id=’https://prezi.com/hgjm18z36h75/why-should-you-move-beyond-slides/’ height=’400′ width=’600′]
Any ideas?
Thank you for a great plugin!
Mike
]]>The <object>
tag contains invalid width and height attributes.
<object id="prezi_' . $id . '" name="prezi_' . $id . '" width="' . $id . '" height="' . $id . '">
should be:
<object id="prezi_' . $id . '" name="prezi_' . $id . '" width="' . $width . '" height="' . $height . '">
PreziWP currently forces HTTP when loading the preziloader.swf which drives up insecure content warnings in the browser when the using HTTPS. Prezi supports loading the SWF through HTTPS.
Changing both occurrences of:
"https://prezi.com/bin/preziloader.swf"
to:
"' . ( is_ssl() ? 'https' : 'http' ) . '://prezi.com/bin/preziloader.swf"
fixes the issue.
My client is having issues viewing his prezi presentation on their ipad..any thoughts?
]]>I’ve prepared PreziWP plugin with internationalization function and the spanish translation.
You can download it here.
]]>Can anyone think of a way I could use a Prezi as an interactive header image?
I guess some themes support header area widgets and I could use a text widget to use the shortcode. Any other ideas?
]]>