freque.unce
Forum Replies Created
-
Forum: Plugins
In reply to: [Twitter Tracker] Date Limit?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.
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.
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.
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
In reply to: [GD bbPress Tools] Quotes – Filter RevisionsI 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
In reply to: [GD bbPress Tools] User Signature on BuddyPress Profileyou 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.
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
Forum: Hacks
In reply to: remove xprofile "name" from registration form?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/
Forum: Hacks
In reply to: remove xprofile "name" from registration form?sorry, I meant to post this on buddypress.org