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.
+1 for this. Not only the orders table, it affects almost all admin pages, as it loads its css on all pages.
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.
-
This reply was modified 2 years, 2 months ago by
vfdesigner20.
yes i too am having this issue please fix asap
Also experiencing this bug, Please fix asap.
I can also confirm this bug in the latest version.
Can confirm this bug as well. Had to go back to a previous version of the plugin. Please fix this bug asap.
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 2 years, 2 months ago by
alexl75.