Codeart
Forum Replies Created
-
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] SAME MP3 PLAYING TWICE SIMULTANEOUSLYPlease provide more details and a link to your site
What browser did you use, are you sure you dont have it twice on your page, are you sure you didnt ave two windows open at the same time etc etc?Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Amazon S3 hosted linksHi Joshua,
I couldn’t replicate your problem with other amazons3 hosted mp3 files.
The plugin doesnt work only with your links, i tried 10 more and it plays them without any problem.Here is link where i have put your link and my link on same page (yours is the first one and doesnt play).
Here is link to an image of how your permissions and meta-data needs to be set in your amazons3 properties for each file.
https://i.imgur.com/mD1DJBO.jpg
Other than that i cant help much, as i said it works with my s3 links without any issue so the problem is not in the plugin itself.
codeart
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Black box above playerYes jennp.
My email is tomislav [at] codeart [dot] mkReplace at and dot with appropriate symbols
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Black box above playerHey jennp,
Can you please provide link to a page on your site where you have the plugin with the black box?
Thanks
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Continual PlayHi jeeoc,
You can achieve that by loading the player in its own frame and the whole website in another frame. However i don’t recommend you doing that.
The other solution is to have the audio player in a pop-up window.
However all of these will require custom coding so we cant help here with our plugin.
Thanks,
codeartForum: Plugins
In reply to: [CodeArt - Google MP3 Player] Black box above playerHi guys,
That should have been fixed, can you point me to a link where you are getting the black box?
And in what circumstances are you getting it?
Are you trying to use custom width/height?Thanks,
codeartForum: Plugins
In reply to: [CodeArt - Google MP3 Player] Amazon S3 hosted linksHi Joshua,
Password changed, will let you know if we have a fix by the end of the week.
Thanks
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] DownloadIt will show automatically on your site as it does with every other plugin ??
Regards,
codeartForum: Plugins
In reply to: [CodeArt - Google MP3 Player] DownloadI cant tell you exact timeframe, it really depends on our free time.
Should be within a month.Thanks
The latest version (out about a month ago) has support for handheld devices.
So this topic can be marked as resolved ??
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Will not start playingHi jockoe,
I’m not sure i understood your issue, are you saying the player doesnt want to play the audio files you use from dropbox?
Tonk,
I just checked your website and the player seem to be working ok?
Do you have any additional problems?
Thanks
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] Amazon S3 hosted linksHi Joshua,
Are your files mp3?
Can you post a link to one of your files so i can check it out?
Thanks
Forum: Plugins
In reply to: [CodeArt - Google MP3 Player] DownloadHi fridsforbundet,
We will be looking to add this to the next version.
Thanks
Hi filipecarlos,
The issue is not with the player but with the latest Firefox version incompatibility with the latest flash.
You will have the same issues if you put more youtube videos on one page or any other flash elements.
There’s nothing we could do here.
Forum: Plugins
In reply to: [Facebook] Facebook AND wordpress commentsHi Frannie,
I had the same problem, i couldn’t find a way to do it from the plugin back-end so i went to have a look at the code and i think i fixed it for me. I cant notice anything wrong so here it is how you can do it.
Go to the plugin folder and into the social-plugins subfolder.
You will see the fb-social-plugins.php file there, download it through your FTP client and open it in any text editor (you can use even notepad but i recommend using at least notepad++)You will just need to comment two lines that are actually blocking the default wordpress comments.
They are lines 46 and 48 and here is how my file looks like now with commented lines.
if ( array_key_exists( 'comments', $options ) && array_key_exists( 'enabled', $options['comments'] ) && $options['comments']['enabled'] ) { add_filter( 'the_content', 'fb_comments_automatic', 30 ); //add_filter( 'comments_array', 'fb_close_wp_comments' ); add_filter( 'the_posts', 'fb_set_wp_comment_status' ); //add_action( 'wp_enqueue_scripts', 'fb_hide_wp_comments' ); add_filter( 'comments_number', 'fb_get_comments_count' ); }