Hi Chris,
Sorry it’s taken so long, but I released a workaround a couple of weeks ago:
Okay, here is a workaround using JavaScript. You need to put the following HTML wherever you want the select box to show up:
<div id="lc-selection"></div>
You then need to drop the following code in functions.php (make a back up of it first!):
function lc_move_select() {
?>
<script type="text/javascript">
var lcSelectForm = '';
var lcSelectTarget = '';
var lcAllForms = document.getElementsByTagName('form');
for (var i=0; i<lcAllForms.length; i++) {
if (lcAllForms[i].id.indexOf('lc_change')==0) {
// move it.
lcSelectForm = lcAllForms[i];
lcSelectTarget = document.getElementById('lc-selection');
lcSelectTarget.innerHTML = lcSelectForm.innerHTML;
}
}
lcSelectForm.parentNode.removeChild(lcSelectForm);
</script>
<?php
}
add_action( 'wp_footer', 'lc_move_select' );
That should move the select box to where you want it to go. Note that the select box may flash up at the bottom of the post before it disappears and then reappears in the desired location. Not sure if I can do anything about that, but let me know if it’s a problem and I’ll see.
I’ll come up with a more permanent solution when I rewrite the plugin, but that could be a few months away depending on a whole heap of other factors.
Cheers,
Stephen