Viewing 9 replies - 1 through 9 (of 9 total)
  • Alex Spataru

    (@alexandrubr)

    Came here with yet another confirmation. The issue comes from activecampaign-for-woocommerce/admin/css/activecampaign-for-woocommerce-admin.css

    Specifically, this rule

    .fixed {
        position: fixed;
    }

    I think you should actually disable all those CSS rules, as they affect all the elements with the generic classes

    .visible {
        visibility: visible
    }
    
    .invisible {
        visibility: hidden
    }
    
    .static {
        position: static
    }
    
    .fixed {
        position: fixed;
    }
    
    .absolute {
        position: absolute
    }
    
    .relative {
        position: relative
    }
    
    .sticky {
        position: sticky
    }

    I can confirm this bug in the latest version.

    Surbma

    (@surbma)

    +1 for this. Not only the orders table, it affects almost all admin pages, as it loads its css on all pages.

    vfdesigner20

    (@vfdesigner20)

    My workaround was to deactivate the plugin.
    Go to Editing?activecampaign-for-woocommerce/admin/css/activecampaign-for-woocommerce-admin.css

    And edit “.fixed{position:fixed}” to “.fixed-edithere{position:fixed}”
    until this is updated.

    Then reactivated the plugin. Also had to clear my browser cashe.

    showponygraphics

    (@showponygraphics)

    yes i too am having this issue please fix asap

    emiellio99

    (@emiellio99)

    Also experiencing this bug, Please fix asap.

    Frank Schrijvers

    (@frankschrijvers)

    I can also confirm this bug in the latest version.

    daveykj

    (@daveykj)

    Can confirm this bug as well. Had to go back to a previous version of the plugin. Please fix this bug asap.

    alexl75

    (@alexl75)

    For the ActiveCampaign team, your developers need to use the prefix option in the Tailwind CSS configuration to avoid conflicting with other CSS files: https://tailwindcss.com/docs/configuration#prefix

    Also, please configure the content option so that the ActiveCampaign CSS file is pruned properly, a 1.9MB CSS file is excessive for an admin plugin… Docs here: https://tailwindcss.com/docs/content-configuration

    cc @acteamintegrations

    • This reply was modified 12 months ago by alexl75.
Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Bug in version 2.5.2’ is closed to new replies.