simon.ward
Forum Replies Created
-
Forum: Plugins
In reply to: [MP3-jPlayer] Playlist Button for Text PlayerNot exactly sure what you’re asking, could you clarify a little?
Forum: Plugins
In reply to: [MP3-jPlayer] Website brokenDid you resolve this? I can’t reproduce this error at all.
Forum: Plugins
In reply to: [MP3-jPlayer] Prevent converting non-audio files to play linksIf you’re running the shortcode in a template file, you could just check the extension before deciding whether to run the shortcode.
I’ll think about adding something to filter out non-audio urls, though tbh I’m a little reluctant as this only applies when manually writing a url, in which case I presume the admin knows what they want to do!
Forum: Plugins
In reply to: [MP3-jPlayer] Player no longer displays properlyHi Dana, can you post a link?
Forum: Plugins
In reply to: [MP3-jPlayer] Works in Popout but not in pageAll seems to be working for me, are you still having issues?
Forum: Plugins
In reply to: [MP3-jPlayer] Hide player for unregistered userCurrently it’s not possible, but I’ll add this in the next update. It will probably be a global setting, like a checkbox on the settings page.
Hi Mike, to set the colour you should only need to click one of the droplet icons next to a colour first. Maybe it’s not working for you?
Ordering depend on how you’re using the plugin. It sounds like you are using the feature that lets you bulk play an entire folder. In this case the ordering options are by filename or upload date, in asc or desc order. These are set on the plugin’s settings page.
For arbitrary control over the playlist ordering then a different method should be used to make the playlist, for eg. you can upload to the media library and then use WP’s built-in playlist builder. Or you can write a shortcode and specify each filename.
Forum: Plugins
In reply to: [MP3-jPlayer] Player skipps all the time!Hello, can you post a link to the site? I’ll take a look.
Forum: Plugins
In reply to: [MP3-jPlayer] Can't Locate AudioMy guess would be the way your server is set up to serve media. Putting your audio url directly into the address bar it doesn’t play either, instead prompts me to download the file. I think this is probably the issue.
Forum: Plugins
In reply to: [MP3-jPlayer] Player does not render as expectedDid you want a playlist player?
How are you adding the player shown in the image?Forum: Plugins
In reply to: [MP3-jPlayer] Player looks different on pop out to when it is embeddedIt’s because your theme is trying to style the player’s ul elements, these are the offending rules:
float: left;
width: 100%;They’re being applied to all uls. I’ll try to prevent it affecting the player in the next update. For now you could add this to your theme style.css file:
body ul.ul-mjp {
float:none;
width:auto;
}should do it.
Forum: Plugins
In reply to: [MP3-jPlayer] Start TimeThere’s no way to do this currently.
Forum: Plugins
In reply to: [MP3-jPlayer] Default folder path is being ignoredWhen you enter a path on the settings page and save it, then you will see a message telling you if the path is ok and how many files are there. What is the message saying?
Forum: Plugins
In reply to: [PDF Creator Lite] Adding some kind of tablesHi,
the plugin uses TCPDF to create the document which has good support for html tables, but very limited support for css properties, and float is not supported at all.
So probably the easiest way to do this is to use table markup to get different content on the left and right. This thread has an example of this (ignore the fact it’s talking about html2pdf, it’s still TCPDF under the hood) :
https://stackoverflow.com/questions/8776391/working-with-css-floats-in-html2pdf
Alternatively you could use TCPDF’s direct pdf methods for adding content (so avoiding the conversion step from html to pdf). There’s a good number of examples here:
https://www.tcpdf.org/examples.php
Simon
Forum: Plugins
In reply to: [Quiz Tool Lite] Can't edit quizAre the tabs totally blank? It should look like this:
ScreenshotThe tabs use jqueryUI to render so it may be possible another plugin is causing a conflict.
Can you deactivate any apart from the quiz tool to check if that works?