-
AuthorPosts
-
April 29, 2020 at 5:02 pm #1208210
Hallo,
wie kann ich folgende Anweisung/Link im head einfügen:
<script type=”module” src=”XXXXXX”></script>
Die Suchfunktion it head und javascript ergab leider nichts brauchbares. Enfold Child Theme ist installiert und aktiviert.Grüße Mike
April 29, 2020 at 5:15 pm #1208211Versuche mal das hier in deiner Child-Thema functions.php:
Pass nur auf, deine Anführungszeichen waren nicht geeignet zur Übernahme in die functionsfunction add_script_to_head(){ ?> <script type="module" src="XXXXXX"></script> <?php } add_action('wp_head', 'add_script_to_head');
May 1, 2020 at 8:24 am #1208737Hi,
Thanks for helping out @guenni007, did you try that out and did you have any luck with it @fitalis?
Best regards,
RikardMay 3, 2020 at 12:35 pm #1209261Besten Dank, es funktioniert !!!!
May 4, 2020 at 5:54 am #1209411Hi,
Great, I’m glad that you got it working and thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.
Best regards,
RikardMay 4, 2020 at 2:38 pm #1209550Weiterhin würde mich interessieren, wie man die JS Anweisung auf einer einzelen Seite implementiert. Derzeit befindet sich diese im Head, also wird sie auf jeder Seite geladen.
VG Mike
May 4, 2020 at 9:56 pm #1209737Hi,
You can try to add the code block element on a single page and then see if it runs from there. Otherwise an if statement would work.
Best regards,
Jordan ShannonMay 12, 2020 at 9:17 am #1212051Hi,
es ist also unmöglich eine JS Pfadangabe und/oder CSS Styles in den head einer einzelen Seite (SeiteB) zu implementieren? Das ist aber eine großer Nachteil, denn dann werden die externe JS Datei beim Aufruf der Webseite geladen und nicht beim Aufruf von SeiteB. Wenn der Nutzer die SeiteB gar nicht besucht wird ja trotzdem das JS und CSS geladen.
VG Mike
May 12, 2020 at 5:54 pm #1212269Hi Fitalis,
Yes, you can check for the page id and load only on the page by wrapping like this:
function add_script_to_head(){ if (is_page('page id')) { ?> <script type="module" src="XXXXXX"></script> <?php } } add_action('wp_head', 'add_script_to_head');
Best regards,
VictoriaJune 23, 2023 at 8:42 am #1411463Hallo,
wie kann ich dann Javascrpt im 4. Widget im footer einfügen:
Grüße MarcuzJune 24, 2023 at 10:22 am #1411528 -
AuthorPosts
- You must be logged in to reply to this topic.