• Resolved tanteastrid

    (@tanteastrid)


    I recently have tried to edit some custom fields. But the edit mode (interface) is damaged: so I cannot access the necessary fields to do some changes and save them. I’ve searched the forum but did not find any related topics.
    Best regards, Jan

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Dina S.

    (@themehighsupport)

    Hi,

    Your issue needs a detailed check. Could you please raise a ticket through our website? We hope our technical team will be able to help.

    Thank you!

    Thread Starter tanteastrid

    (@tanteastrid)

    ok, did so. Thanks and hope so, too. Best regards, Jan

    Plugin Support Dina S.

    (@themehighsupport)

    While checking, we found the issue is related to a style compatibility conflict with the ‘Tante Astrid Plugin’. To resolve this, please add the following code snippet to your child theme’s functions.php file:

    function dequeue_custom_admin_styles() {
    $current_screen = get_current_screen();
    if ($current_screen && isset($_GET['page']) && $_GET['page'] === 'checkout_form_designer') {
    wp_dequeue_style('custom-admin-styles');
    }
    }
    add_action('admin_enqueue_scripts', 'dequeue_custom_admin_styles', 100);

    We hope this will help.

    Thank you!

    Thread Starter tanteastrid

    (@tanteastrid)

    Hi Dina, it did help! Thanks a lot!
    Best regards, Jan

    Plugin Support Dina S.

    (@themehighsupport)

    Hi Jan,

    Have a great day!

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.