04/29/2014 at 8:33 pm
#289729
Keymaster
@ eve
Yes, Tile Plus will be updated in short order. Closely followed by Tile. Seems in my testing I didn’t roll back the code of those two templates to the current released versions so I missed a couple items.
In the meantime, to get the drop down select back to functioning like it was before, add the following to the theme’s functions.php file.
add_action( 'cn_template_enqueue_js-tile-plus', 'Tile_Plus_Enqueue_Chosen', 9 );
function Tile_Plus_Enqueue_Chosen() {
wp_enqueue_script( 'jquery-chosen-min' );
}
The category drop down not being disabled is likely due to the missing space between ‘logo’ and ‘enable_…’
With Form, are you testing while logged in? If so, you are adding with the same permissions as if you are adding an entry in the admin. Logout, the submissions will go to the moderation queue.
Hope that helps!