Title: freque.unce's Replies | WordPress.org

---

# freque.unce

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Twitter Tracker] Date Limit?](https://wordpress.org/support/topic/date-limit/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/date-limit/#post-4030264)
 * Same problem. I’ve been wading through the plugin code looking for hints, I haven’t
   had any luck so far. Tweets seem to expire after about 1 week.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] autoplay="false" preload="false" do not work](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/#post-3411548)
 * I don’t run jetpack, but I do run BP-Gallery from buddydev, which uses mediaelement
   for some of it’s core functions. It’s certainly possible the bugs I was experiencing
   were related to some sort of conflict with a plugin or my theme. Including the
   filetype within the shortcode swiftly fixed the problem for me, so I’m a happy
   camper. Thanks so much for posting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] autoplay="false" preload="false" do not work](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/#post-3411546)
 * My described method above didn’t actually work for me, it produced non-working
   players. Wenci’s method didn’t work for me either, within a template, but I rewrote
   my template shortcode similar to Wenci’s method, specifying the filetype, and
   it seems to be working great. The key here seems to be specifying the filetype,
   right in the shortcode.
 * Original:
    do_shortcode(‘[audio mp3="' . "$filename" . '" preload="false" autoplay
   ="false"]‘);
 * Patched:
    do_shortcode(‘[audio mp3="' . "$filename" . '" type="audio/mp3"]‘);
 * I will repost if I notice any problems.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] autoplay="false" preload="false" do not work](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/#post-3411542)
 * I managed to fix my problem by using the literal html rather than the shortcode.
 * I have a template page and I replaced this method:
    do_shortcode(‘[audio mp3="'."
   $filename" . '" preload="false" autoplay="false"]‘);
 * with this method:
    <audio src=”$filename” type=”audio/mp3″ width=”500″ height
   =”30″ > </audio>;
 * It behaves the same, except the interim players are muted while the page is loading.
   Hopefully someone else will find this useful.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GD bbPress Tools] Quotes – Filter Revisions](https://wordpress.org/support/topic/quotes-filter-revisions/)
 *  Thread Starter [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/quotes-filter-revisions/#post-3621171)
 * I think the action for this patch would take place around line 63 in \code\mods\
   quote.php:
 * _public function quote\_content($content) {
    return ‘<div id=”d4p-bbp-quote-‘.
   bbp\_get\_reply\_id().'”>’ .$content. ‘</div>’; }
 * $content returns both the topic text plus the revision log. I think I need a 
   way to return just the topic text inside the div, and put the revision log outside
   of the div, but I’m not sure how to write it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GD bbPress Tools] User Signature on BuddyPress Profile](https://wordpress.org/support/topic/user-signature-on-buddypress-profile/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/user-signature-on-buddypress-profile/#post-3528463)
 * you can also use something like:
 * if (bp_get_current_profile_group_id() == 1 ) {
 * in \forms\tools\signature_buddypress.php
 * Replace “1” with whatever profile group you’d like the form to appear on.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] autoplay="false" preload="false" do not work](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/)
 *  [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/autoplayfalse-preloadfalse-do-not-work/#post-3411538)
 * I have a similar problem. All the players will sometimes play at once while the
   page is still loading. This can sometimes last longer than 10 seconds, depending
   on load speed for the page. I’d be grateful for a patch. I’m not very good with
   java. It’d be sweet if I could even just have the interim players automatically
   muted. [https://dl.dropbox.com/u/18436485/buffer.png](https://dl.dropbox.com/u/18436485/buffer.png)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [remove xprofile "name" from registration form?](https://wordpress.org/support/topic/remove-xprofile-name-from-registration-form/)
 *  Thread Starter [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/remove-xprofile-name-from-registration-form/#post-2441093)
 * Here is the solution I found if anyone needs it: [http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-xprofile-name-from-registration-form/](http://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/remove-xprofile-name-from-registration-form/)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [remove xprofile "name" from registration form?](https://wordpress.org/support/topic/remove-xprofile-name-from-registration-form/)
 *  Thread Starter [freque.unce](https://wordpress.org/support/users/frequeunce/)
 * (@frequeunce)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/remove-xprofile-name-from-registration-form/#post-2441013)
 * sorry, I meant to post this on buddypress.org

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