Hi there,
testing your website there’s something strange with selects.. have you customize them?
https://prnt.sc/xp5wsq
This is their appearance right now
Thread Starter
greggs
(@greggs)
Hi,
I don’t think I made any changes. Where would we customize it?
Here is what I see:
https://prnt.sc/xrrh20
This is in Firefox.
Hi agaim,
can you please check first lines of your child theme functions.php file?
The function yithproteo_child_enqueue_styles() should look like this, with the select2 handler used as a dependency.
function yithproteo_child_enqueue_styles() {
wp_enqueue_style( 'yith-proteo-style', get_template_directory_uri() . '/style.css', array( 'select2' ), YITH_PROTEO_VERSION );
wp_enqueue_style(
'yith-proteo-child-style',
get_stylesheet_directory_uri() . '/style.css',
array( 'yith-proteo-style' ),
YITH_PROTEO_VERSION
);
}
add_action( 'wp_enqueue_scripts', 'yithproteo_child_enqueue_styles' );
I am trying out Yith Multivendor marketplace with variable products and notice a similar useability defect to the one described above. If you click on the bottom half of the dropdown box (i.e. the words “Choose an option”) then the attribute options appear momentarily, but then disappear as you move to select one. However the top of the dropdown box behaves as you’d expect. My test environment is running
• Wordpress = 5.6,1
• WooCommerce = 4.9.1
• Theme = Yth Proteo 1.4.5.1
I also tested this in the sandbox for Yith Multivendor marketplace and the defect doesn’t occur. However the sandbox was running a slightly older environment
• Wordpress = 5.5.3
• WooCommerce = 4.7.0
• Theme = yith-proteo-childVersion: 1.0.1
I wonder whether this defect may be due to Javascript library changes introduced in recent WP updates perhaps?
Hi there,
this issue shoulf be solved in version 1.5.0 released some days ago