I created something for the user to upload info from a mobile device. However the PLUS button to add taxonomies is missing on mobile Safari. I figured out how to make it visible all the time on desktop with the code below, but it’s still missing on mobile.
add_action(‘admin_head’, ‘show_plus’);
function show_plus() {
echo ‘<style>
.acf-actions.-hover
{
display:inline-block !important;
}
</style>’;
}