Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bei Klick über das Menü soll der Start des Videos erfolgen #2

Open
hagege opened this issue Dec 23, 2020 · 0 comments
Open

Bei Klick über das Menü soll der Start des Videos erfolgen #2

hagege opened this issue Dec 23, 2020 · 0 comments

Comments

@hagege
Copy link
Owner

hagege commented Dec 23, 2020

Könnte in der folgenden Art funktionieren, siehe hier: https://wordpress.stackexchange.com/questions/153018/add-javascript-to-wordpress-menu

Mit Hilfe der obigen Kommentare ist hier die Lösung, die für mich funktioniert hat. Ich habe eine neue Datei namens olark.js erstellt und diesen Code eingefügt:

jQuery(document).ready(function($) {
$("#menu-item-38872").on("click", function(e){
e.preventDefault();
// olark code here
olark('api.box.expand');
});
});
Dann habe ich das Skript in meiner functions.php mit dem folgenden Code in die Warteschlange gestellt:

function olark_script() {
wp_register_script( 'olark', get_stylesheet_directory_uri() . '/js/olark.js', array(), '1.0.0', true );
wp_enqueue_script( 'olark' );
}

add_action( 'wp_enqueue_scripts', 'olark_script' );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant