Hi @bladeke,
You mean the shipping provider dropdown not working?
Thanks
Hey! Yes exactly. The shipping carriers do exist and appear in the plugin settings.
Hi @bladeke,
Can you please add below code in your theme/child-theme functions.php file and let me know how it works.
function custom_admin_footer_css() {
echo '<style>
.slidout_container .select2-container.select2-container--open {
z-index: 100000000;
}
</style>';
}
add_action('admin_footer', 'custom_admin_footer_css');Thanks
Well, this broke my functions.php and it’s empty now, hence the site is down. Trying to restore the original file… :S
We tried this code snippet in our development store and it’s working fine. Maybe there is some issue with saving the file.
Hello,
I have the same problem and I tested your code, it is not working for me.
You have another solution ?
Thank you
Soniya
Hi @bladeke @colsoniya
Please use the below updated code and let me know how it works.
function custom_admin_footer_css() {
echo '<style>
.select2-container.select2-container--open {
z-index: 100000000;
}
</style>';
}
add_action('admin_footer', 'custom_admin_footer_css');Thanks
I’m still waiting for the database restore from ISP…
CSS conflict with the plugin Popup Builder By Looking Forward Software Incorporated.
The z-index fix you provided is overridden by /wp-content/plugins/popup-builder/public/css/sgpb-modal.css on line 1 they have:
.select2-container.select2-container–open {
z-index: 999999 !important;
}
As a temp fix I have modified sgpb-modal.css and the Shipping Providers options box now opens, but it would be preferable if these classes were not identical…
My database was restored to the state from this morning. Noticed that indeed Pop Up builder had an update which seems to be the culprit. Without the update to it, AST works fine without any additional code needed.
Thank you very much for the tip!!
Hello,
We fixed the conflict with Popup Builder plugin and released the latest version(3.6.2) of the plugin.
Please update with the latest version of the plugin and let me know how it works.
Thanks
