Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #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

    #1208211

    Versuche mal das hier in deiner Child-Thema functions.php:
    Pass nur auf, deine Anführungszeichen waren nicht geeignet zur Übernahme in die functions

    function add_script_to_head(){
    ?>
    	<script type="module" src="XXXXXX"></script>
    <?php
    }
    add_action('wp_head', 'add_script_to_head');
    #1208737

    Hi,

    Thanks for helping out @guenni007, did you try that out and did you have any luck with it @fitalis?

    Best regards,
    Rikard

    #1209261

    Besten Dank, es funktioniert !!!!

    #1209411

    Hi,

    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,
    Rikard

    #1209550

    Weiterhin 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

    #1209737

    Hi,

    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 Shannon

    #1212051

    Hi,

    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

    #1212269

    Hi 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,
    Victoria

    #1411463

    Hallo,
    wie kann ich dann Javascrpt im 4. Widget im footer einfügen:
    Grüße Marcuz

    #1411528

    Hi Marcuz,

    I’m not sure exactly what you are looking to achieve, but you should be able to paste your script inside of script tags:

    <script>
    Your script goes here
    </script>

    Best regards,
    Rikard

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.