ikubod
Forum Replies Created
-
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Cannot Change order of the SongsI’m back!
This plugin is not coded well! Here’s what I’ve found:
The plugin was trying to update the order when you drop a playlist item into a new position, but it turns out they were using some insecure methods throughout their code. This query being one of them. They tried using regular mysql_query rather then wordpress’ methods.
To Fix:
If you go into the plugin’s /player/ajax-functions.php and find
line 111which looks like
mysql_query($query) or die(mysql_error());
and change it to
$wpdb->query($query) or die(mysql_error());It’ll work as intended! Just drag the items where you want them and it’ll auto-update their position!
Word of warning
This plugin is coded quite poorly, and as I mentioned before, seems to have lost support. It may be a good idea to look around for alternatives to this plugin, but with this fix, it should hold you off until you do decide to switch.Best of luck!
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Cannot Change order of the SongsI’m also running into this issue. Sad to see this hasn’t been answered in a week, so it’s probably safe to say it won’t be fixed by the developer. I’ll look into the code and let you know of any fixes found!