Skip to content

Instantly share code, notes, and snippets.

View HideyukHira's full-sized avatar

toyboyninja HideyukHira

View GitHub Profile
@HideyukHira
HideyukHira / add_captcha_to_woocommerce_lost_password_form.php
Created July 8, 2024 07:07
Adds a captcha to the WooCommerce lost password form.
<?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' );
@HideyukHira
HideyukHira / htmlvideoplayseamless.js
Created November 11, 2023 13:41
jQuery html video play seamless
$(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';