Pro 6 B2 Choose CPT for Looper Z Index

Hello,

I’m trying to set the source of a Loop provider to be my CPT called “Catalogue” which contains “Items”. I’ve created a row and made it a looper provider, and trying to set the source post type.

When I click the dropdown, it appears underneath the model dialog - see video, a small area of the pop-up appears at the bottom.

@bill_hodgson, other users have reported similar issues today with dropdowns not appearing. This is a z-index bug that came up from me having to adjust the z-index of other UI elements to get things stacking correctly. I have already addressed this and it will be available in the next bundle. Sorry for that.

For now, you can try using the following CSS in the Dev Toolkit’s custom UI CSS:

.tco-react-select__menu-portal {
  z-index: 333334 !important;
}

That should get it working until then. Sorry about that!

Tried it on Chrome and Safari, not working. I pasted that CSS into the UI CSS box.

Sorry, @bill_hodgson…just realized that for pickers it needs to be a bit higher. Try:

 .tco-react-select__menu-portal {
  z-index: 444445 !important;
}

That is working for me.

Fixed thanks

No problem!