Category: Widgets
Tawk.to Chat Widget
Bright Tech AI Agent
TDI
RADIO HTML bielo
NOVITÀ! È aperto il polo di RadiologiaContinue reading
Basic | Automatisches Löschen des Papierkorbs deaktivieren
function wpb_remove_schedule_delete() { remove_action( ‘wp_scheduled_delete’, ‘wp_scheduled_delete’ ); } add_action( ‘init’, ‘wpb_remove_schedule_delete’ );Continue reading
Fluent form date error
{“code”:”qm_fatal”,”message”:”Uncaught Exception: Failed to parse time string (30/05/2025) at position 0 (3): Unexpected character in /var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php on line 1167″,”data”:{“message”:”Uncaught Exception: Failed to parse time string (30/05/2025) at position 0 (3): Unexpected character”,”file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php”,”line”:1167,”trace”:[{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php”,”line”:1167,”function”:”__construct”,”class”:”DateTime”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php”,”line”:797,”function”:”format_record_data”,”class”:”FlowMattic_Table”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/apps/tables/class-flowmattic-tables.php”,”line”:462,”function”:”find_record”,”class”:”FlowMattic_Table”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/class-flowmattic-workflow.php”,”line”:1439,”function”:”run_action_step”,”class”:”FlowMattic_Table”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/flowmattic/inc/class-flowmattic-workflow.php”,”line”:2769,”function”:”run”,”class”:”FlowMattic_Workflow”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:324,”function”:”execute”,”class”:”FlowMattic_Workflow”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:348,”function”:”apply_filters”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/plugin.php”,”line”:517,”function”:”do_action”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/flowmattic-apps/fluent-forms/class-fluent-forms.php”,”line”:179,”function”:”do_action”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:324,”function”:”capture_fluent_forms_submission”,”class”:”FlowMattic_Fluent_Forms”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:348,”function”:”apply_filters”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/plugin.php”,”line”:517,”function”:”do_action”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/fluentform/app/Services/Form/SubmissionHandlerService.php”,”line”:533,”function”:”do_action”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/fluentform/app/Services/Form/SubmissionHandlerService.php”,”line”:49,”function”:”insertSubmission”,”class”:”FluentForm\\App\\Services\\Form\\SubmissionHandlerService”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/fluentform/app/Modules/SubmissionHandler/SubmissionHandler.php”,”line”:25,”function”:”handleSubmission”,”class”:”FluentForm\\App\\Services\\Form\\SubmissionHandlerService”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-content/plugins/fluentform/app/Hooks/Ajax.php”,”line”:21,”function”:”submit”,”class”:”FluentForm\\App\\Modules\\SubmissionHandler\\SubmissionHandler”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:324,”function”:”{closure}”,”class”:”FluentForm\\Framework\\Foundation\\Application”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/class-wp-hook.php”,”line”:348,”function”:”apply_filters”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-includes/plugin.php”,”line”:517,”function”:”do_action”,”class”:”WP_Hook”,”type”:”->”},{“file”:”/var/www/inkontaktbringer.de/htdocs/wp-admin/admin-ajax.php”,”line”:192,”function”:”do_action”}]}}×Continue reading
Basic | Mobile Menu Visibility anpassen (Screenreader & tabfocus)
jQuery(function ($) { const body = $(‘body’); const page = $(‘#page’); const navWrapper = $(‘.dt-mobile-header’); const mobileMenu = $(‘#mobile-menu’); const miniWidgets = $(‘.mobile-mini-widgets-in-menu’); let lastFocusedElement = null; // Fokusfalle aktivieren function trapFocus(container) { const focusableEls = container.find(‘a, button, input, [tabindex]:not([tabindex=”-1″])’).filter(‘:visible’);…Continue reading
Basic | add class .da-skip-contrast (automatischen Kontrast von DIGIaccess deaktiveren)
// Klassen bei querySelectorAll (”); eingeben: Analog CSS + durch Komma getrennt jQuery(document).ready(function() { const items = document.querySelectorAll(‘.section-green-dark .vc_column-inner > .wpb_wrapper .wpb_text_column *, .cta .wpb_text_column *, .vc_tta-title-text’); items.forEach(item => { item.classList.add(‘da-skip-contrast’); }); });Continue reading
Basic | Remove role ‘contentinfo’ von bottom-bar (weil doppelt und damit unzulässig)
jQuery(document).ready(function() { const items = document.querySelectorAll(‘#bottom-bar’); items.forEach(item => { item.removeAttribute(‘role’); }); });Continue reading