Support

Account

Home Forums Front-end Issues Taxonomy Field "plus" button missing on mobile

Unread

Taxonomy Field "plus" button missing on mobile

  • 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>’;
    }

Viewing 1 post (of 1 total)

You must be logged in to reply to this topic.