Hello there,
Our plugin has a CSS rule to hide that container from any wishlist page, which is the following:
.yes-js .hidden-title-form {
display: none;
}
wp-content/plugins/yith-woocommerce-wishlist/assets/css/style.css?ver=3.19.0
But if for some reason your theme or some other plugin changes the structure of the wishlist, or dequeues our style files, that container will be visible.
Checking your installation, I see that our style files are not loaded, and this is probably why you see the container.
However, to avoid the latter, you can add the following code inside the functions.php file of your active child theme:
if (defined('YITH_WCWL')) {
if (!function_exists('yith_wcwl_enqueue_back_required_assets')) {
function yith_wcwl_enqueue_back_required_assets()
{
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
$version = defined('WC_VERSION') ? WC_VERSION : '';
wp_enqueue_style('woocommerce_prettyPhoto_css', plugins_url('assets/css/prettyPhoto.css', WC_PLUGIN_FILE), array(), $version);
wp_enqueue_script('prettyPhoto', plugins_url('assets/js/prettyPhoto/jquery.prettyPhoto' . $suffix . '.js', WC_PLUGIN_FILE), array('jquery'), '3.1.6');
wp_enqueue_script('prettyPhoto-init', plugins_url('assets/js/prettyPhoto/jquery.prettyPhoto.init' . $suffix . '.js', WC_PLUGIN_FILE), array('jquery'), $version);
wp_enqueue_style('yith-wcwl-main', YITH_WCWL_URL . 'assets/css/style.css', array('jquery-selectBox'));
}
add_action( 'wp_enqueue_scripts', 'yith_wcwl_enqueue_back_required_assets', 9999 );
}
}
Let us know any news, please.
Best regards.