Skip to content

Instantly share code, notes, and snippets.

@suprsonicjetboy
suprsonicjetboy / function.php
Created September 5, 2018 17:15
Wordpressのページネーションを、プラグインを使わずにAjaxで実装する
<?php
function my_wp_enqueue_scripts() {
$handle = 'get_post';
# https://developer.wordpress.org/reference/functions/is_home/
if ( is_home() ) {
wp_register_script( $handle, get_theme_file_uri( '/assets/js/get_post.js' ), array( 'jquery' ), false, true);
}
@suprsonicjetboy
suprsonicjetboy / detail_js.twig
Created February 21, 2018 03:54
EC-CUBE3 商品詳細ページで数量を<input>から<select>のプルダウンに変更するjQueryスクリプト
{# Product/detail.twig #}
{% block javascript %}
<script>
(function(){
// <input>を<select>に書き換え
$('#quantity').replaceWith('<select id="quantity" name="quantity" class="form-control"><option value="0">0</option></select>');
var quantity_max = 100; // <select>の表示上限
var stock_data = {};