Title: postmarkj's Replies | WordPress.org

---

# postmarkj

  [  ](https://wordpress.org/support/users/postmarkj/)

 *   [Profile](https://wordpress.org/support/users/postmarkj/)
 *   [Topics Started](https://wordpress.org/support/users/postmarkj/topics/)
 *   [Replies Created](https://wordpress.org/support/users/postmarkj/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/postmarkj/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/postmarkj/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/postmarkj/engagements/)
 *   [Favorites](https://wordpress.org/support/users/postmarkj/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 15 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Big Buck Bunny?](https://wordpress.org/support/topic/big-buck-bunny/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/big-buck-bunny/#post-4196519)
 * Hi, Vladimir. The url for big buck bunny is hardcoded into class.shortcodes.php,
   and I’m not sure why this is only a problem for me. The text of my edited post
   is :
 *     ```
       How about adding some video?  I have a 30 second clip of some craziness happening with one of my songs.   To add it I can do one of two things (just like with adding audio!).  Add Media or Insert Shortcode.  The main difference is that Add Media lets you select something that you already uploaded, and Insert Shortcode makes you upload a new file.
   
       sloggoth - dancing corpses excerpt
   
       [video width="320" height="240" wmv="http://blogs.iddeaarts.org/postmarkj/wp-content/uploads/sites/5/2013/09/sloggoth-dancing-corpses.wmv"][/video]
       ```
   
 * So you see the URL is fine. But after posting the page looks like this:
    [](http://blogs.iddeaarts.org/postmarkj/2013/09/28/moving-pictures/)
 * I really don’t want to deactivate Shortcodes Ultimate, but I might need to because
   the video is wonky.
 * Thanks mate!
    Mark
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Inserted media plays wrong video/audio – very strange](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/#post-4171132)
 * Marking as resolved and moving to [http://wordpress.org/support/topic/big-buck-bunny?replies=5](http://wordpress.org/support/topic/big-buck-bunny?replies=5)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Big Buck Bunny?](https://wordpress.org/support/topic/big-buck-bunny/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/big-buck-bunny/#post-4196447)
 * Well, that DOES get rid of Buck Bunny, but then nothing else will play. The php
   is not strong in this one (me) but I’ll try my hand at hacking away at the code
   as well 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Network Shared Posts] plugin broken in WordPress 3.5 ( possible fix)](https://wordpress.org/support/topic/plugin-broken-in-wordpress-35-possible-fix/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/plugin-broken-in-wordpress-35-possible-fix/#post-3278282)
 * I passed null as the second arg and it works… At least I don’t see any problems
   so far.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Register Plus Redux] Nothing happens](https://wordpress.org/support/topic/nothing-happens-39/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/nothing-happens-39/#post-4184296)
 * I had the same trouble, but it was Buddypress that wasn’t letting other plugins
   play.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Register Plus Redux] Old signup is back / Enh Req – use sitename for URL](https://wordpress.org/support/topic/old-signup-is-back-enh-req-use-sitename-for-url/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/old-signup-is-back-enh-req-use-sitename-for-url/#post-4149940)
 * Buddypress was hogging the registration screens. Disabled and works now. Well,
   there is another bug, but I’ll start a new thread for that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Big Buck Bunny?](https://wordpress.org/support/topic/big-buck-bunny/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/big-buck-bunny/#post-4196342)
 * Found it, class.shortcodes.php:
 *     ```
       public static function video( $atts = null, $content = null ) {
       		$atts = shortcode_atts( array(
       				'url'      => 'http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v',
       				'poster'   => 'http://www.jplayer.org/video/poster/Big_Buck_Bunny_Trailer_480x270.png',
       				'title'    => '',
       				'width'    => 600,
       				'height'   => 300,
       				'controls' => 'yes',
       				'autoplay' => 'no',
       				'loop'     => 'no',
       				'class'    => ''
       			), $atts );
       ```
   
 * I tried setting hte urls to”” but that just broke it. I’ll contact shortcodes
   ult and let them know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Shortcodes Plugin — Shortcodes Ultimate] Big Buck Bunny?](https://wordpress.org/support/topic/big-buck-bunny/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/big-buck-bunny/#post-4196340)
 * Same here – whether inserted via Add Media or Shortcodes Ult, it inserts Big 
   Buck Bunny. I already made a post about this and nobody has replied. I’m just
   going to find where in the code it’s broken and try, with my meager php skills,
   to fix it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pie Register – User Registration, Profiles & Content Restriction] How to get the Pie Register login/register page](https://wordpress.org/support/topic/how-to-get-the-pie-register-loginregister-page/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/how-to-get-the-pie-register-loginregister-page/#post-3280531)
 * Hi Genetech. I’m having the same problem reported above. My register page uses
   the default WP page. Now here’s the kicker: It acts this way for Pie and Register
   Plus Redux. Do you know what might be causing this behavior? I really need Pie
   to work for the disclaimers!
 * Thanks,
    Mark Jensen blogs iddeaarts org
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Register Plus Redux] Old signup is back / Enh Req – use sitename for URL](https://wordpress.org/support/topic/old-signup-is-back-enh-req-use-sitename-for-url/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/old-signup-is-back-enh-req-use-sitename-for-url/#post-4149930)
 * Also, is it possible to send user’s to their new site after verifying their email?
   Currently it sends back to the main page.
 * And I still can’t get the plugin to work. :/
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Inserted media plays wrong video/audio – very strange](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/#post-4170951)
 * And it doesn’t matter if it is inserted via Add Media or Insert Shortcode. The
   page just uses a different media source!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Inserted media plays wrong video/audio – very strange](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/inserted-media-plays-wrong-videoaudio-very-strange/#post-4170895)
 * I looked at the shortcode versus the source:
 * shortcode
    [video width="320" height="240" wmv="http://blogs.iddeaarts.org/postmarkj/
   wp-content/uploads/sites/5/2013/09/sloggoth-dancing-corpses.wmv"][/video]
 * view source
    <div id=”su_video_player_5246c1e1cc5dd” class=”su-video jp-video
   su-video-controls-yes” data-id=”su_video_player_5246c1e1cc5dd” data-video=”[http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v&#8221](http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v&#8221);
   data-swf=”[http://blogs.iddeaarts.org/postmarkj/wp-content/plugins/shortcodes-ultimate/assets/other/Jplayer.swf&#8221](http://blogs.iddeaarts.org/postmarkj/wp-content/plugins/shortcodes-ultimate/assets/other/Jplayer.swf&#8221);
   data-autoplay=”no” data-loop=”no” data-poster=”[http://www.jplayer.org/video/poster/Big_Buck_Bunny_Trailer_480x270.png”&gt](http://www.jplayer.org/video/poster/Big_Buck_Bunny_Trailer_480x270.png”&gt);
   <div id=”su_video_player_5246c1e1cc5dd_player” class=”jp-jplayer” style=”width:
   320px;height:240px”></div>
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Use a code instead of user name for site url – possible?](https://wordpress.org/support/topic/use-a-code-instead-of-user-name-for-site-url-possible/)
 *  Thread Starter [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/use-a-code-instead-of-user-name-for-site-url-possible/#post-4149539)
 * Thanks sham! But the problem is if users use their full names for their usernames.
   Then their name will be in the url. I’d like to use their Site name in the URL
   instead. I got a long day ahead of me – maybe I can find where the URL is created
   in the code and tweak it.
 * Oh, that p3i46 or whatever just meant a randomized URL address.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Same sidebar/widgets across all sites](https://wordpress.org/support/topic/same-sidebarwidgets-across-all-sites/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/same-sidebarwidgets-across-all-sites/#post-3345110)
 * Thanks very much!
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Same sidebar/widgets across all sites](https://wordpress.org/support/topic/same-sidebarwidgets-across-all-sites/)
 *  [postmarkj](https://wordpress.org/support/users/postmarkj/)
 * (@postmarkj)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/same-sidebarwidgets-across-all-sites/#post-3345108)
 * myladeybugg – what was the solution? I want the same widgets defaulting across
   all new sites so that new users (very inexperienced users at that) would see 
   what I choose to be the most helpful.
 * Thanks,
    Mark IDDeaArts, a portal for artists with intellectual and developmental
   disabilities.

Viewing 15 replies - 1 through 15 (of 15 total)