/wp-content/themes/Divi/style(.*).css
/et-cache/(.*)
#divi-overlay-container-(.*)
#et-boc
#overlay-(.*)
#page-container
#sidebar-overlay
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Konkretes Beispiel: Wir hatten die Tabellen "bceup_options_new" sowie "bceup_options_old" und wollten diese beiden miteinander vergleichen. In beiden Tabellen waren die für uns relevanten Spalten die "option_id", der "option_name" sowie die "option_value". | |
| Als Ergebnis haben wir dann eine neue Auflistung aller Zeilen in BEIDEN Tabellen, die sich voneinander unterscheiden. | |
| */ | |
| SELECT option_id,option_name,option_value | |
| FROM ( | |
| SELECT option_id, option_name, option_value FROM bceup_options_new | |
| UNION ALL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Add Bulk Edit for Applications | |
| // We are adding custom bulk actions in the WP Admin Backend for the post type "application" | |
| function nxt_custom_bulk_actions($bulk_array) { | |
| $application_status_fields = get_field_object('field_62daaf75105aa'); | |
| foreach($application_status_fields['choices'] as $status_option_key => $status_option_value) { | |
| $bulk_array[$status_option_key] = 'Set application status to ' . $status_option_key; | |
| } | |
| return $bulk_array; | |
| } | |
| add_filter('bulk_actions-edit-application', 'nxt_custom_bulk_actions'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| // Implementation for our hacky Google Map Embed - add this code to your footer! | |
| const mousekiller = document.getElementById("mousekiller"); | |
| if(mousekiller) { | |
| mousekiller.addEventListener('click', function (event) { | |
| mousekiller.style.display = "none"; | |
| }); | |
| }; | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Centered Text / Img on one side, text on other */ | |
| %centered-text { | |
| display: flex; | |
| .et_pb_column { | |
| display: flex; | |
| flex-flow: column nowrap; | |
| float: none; | |
| justify-content: center; | |
| .et_pb_module { | |
| margin: 0 auto 30px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function nxt_load_dynamically() { | |
| $tempContent = get_the_content(); | |
| $tempCheck = '[nxt_application'; | |
| $tempVerify = strpos($tempContent,$tempCheck); | |
| if($tempVerify === false) { | |
| // Dein Code, wenn die Nadel im Heuhaufen NICHT gefunden wurde | |
| } else { | |
| // Dein Code, WENN die Nadel GEFUNDEN wurde, z. B. | |
| acf_form_head(); | |
| wp_enqueue_style('mein-style'); |