Hi,
thanks for your post, and sorry for the trouble.
As these are English-language forums, I’ll reply in English. That way, more people can benefit from our discussions. I hope that’s ok.
This sounds like a JavaScript conflict. Can you please post a link to the page with the table where this problem happens, so that I can take a direct look? Thanks!
Regards,
Tobias
Hallo Tobias,
bitte mit folgenden Nutzerdaten in den dummy-account einloggen:
https://lsunds.com/checkpoint/
Benutzername: 10009001
Passwort: ^T4dJXV$FLqe1MF%cs!fXZob
Klappte vor dem Serverumzug über 3 Jahre bestens.
Gruß
Armin
Hi Armin,
from what I can see, the JS concatenation/minification using Autoptimize somehow changes how the jQuery JS library is loaded, so that a script error is raised. Are you maybe somehow changing how jQuery is loaded?
In addition, there’s a JS error caused by these lines (it looks like they are in your theme’s “Custom JS”):
$('.wppcp-private-page-tab wppcp-private-page-files-tab').click();
$('.wppcp-private-page-tab wppcp-private-page-content-tab').hide();
$('.wppcp-private-page-tab wppcp-private-page-disscussion-tab').hide();
These should be written as
jQuery(document).ready(function($){
$('.wppcp-private-page-tab wppcp-private-page-files-tab').click();
$('.wppcp-private-page-tab wppcp-private-page-content-tab').hide();
$('.wppcp-private-page-tab wppcp-private-page-disscussion-tab').hide();
});
Regards,
Tobias