Open Harrisonbro opened 12 years ago
this isn't an issue with wpalchemy exactly ... its how the css is initially included, this has been updated on the main site documentation, try:
// include css to help style our custom meta boxes
add_action( 'init', 'my_metabox_styles' );
function my_metabox_styles()
{
if ( is_admin() )
{
wp_enqueue_style( 'wpalchemy-metabox', get_stylesheet_directory_uri() . '/metaboxes/meta.css' );
}
}
Just tried to use wpAlchemy on a site running wp3.3.1 and when trying to save or update a post I get the following messages:
Any suggestions would be great! Very happy to try things out if that helps.
Cheers, Harrison