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
<?php | |
function add_captcha_to_woocommerce_lost_password_form() { | |
if ( isset( $GLOBALS['siteguard_captcha'] ) ) { | |
add_filter( 'woocommerce_lostpassword_form', [ $GLOBALS['siteguard_captcha'], 'handler_lostpassword_form' ] ); | |
} | |
} | |
add_action( 'init', 'add_captcha_to_woocommerce_lost_password_form' ); |
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
$(document).ready(function () { | |
//設定部分 再生データの配列 | |
var mp4Array = [ | |
"http://techslides.com/demos/sample-videos/small.mp4", | |
"http://techslides.com/demos/sample-videos/small.mp4" | |
]; | |
//設定 ラップするコンテナdivのid指定 | |
var tgtDiv = '#VideoContainer'; |