shinno.kei
Forum Replies Created
-
Forum: Plugins
In reply to: [VK All in One Expansion Unit] input,textareaでエスケープ文字が増殖する確認いたしました。ご対応 ありがとうございました。
Forum: Plugins
In reply to: [VK All in One Expansion Unit] input,textareaでエスケープ文字が増殖する“/inc/insert-ads.php”では、sanitize_config()で stripslashesが処理されています。
他も 同様に処理されれば良いのですが。エスケープ文字を入力するのは稀ですが、ダブルクォートを入力するのは 割と頻繁にあるのではと思います。
Forum: Plugins
In reply to: [VK All in One Expansion Unit] input,textareaでエスケープ文字が増殖するWordPress公式Dockerコンテナで、以下の様に素に環境を作って、”VK All in One Expansion Unit”を追加しただけで常時再現しています。
docker-compose.yml
version: '3' services: wordpress: image: wordpress:latest container_name: wordpress-temp # tty: true # restart: always ports: - 65010:80 volumes: - wordpress:/var/www/html environment: - WORDPRESS_DB_NAME=wordpress - WORDPRESS_DB_USER=root - WORDPRESS_DB_PASSWORD=root - WORDPRESS_DB_HOST=mysql - TZ=Asia/Tokyo depends_on: - mysql mysql: image: mysql:5.7 container_name: wordpress-temp-db # restart: always volumes: - db_data:/var/lib/mysql environment: - MYSQL_ROOT_PASSWORD=root - MYSQL_DATABASE=wordpress - TZ=Asia/Tokyo volumes: wordpress: db_data:
OS-ブラウザは以下で確認しています。
– Mac10.15.7 – Chrome98.0.4758.80
– Ubuntu20.04.3 – Firefox96.0よろしくお願いいたします。
Forum: Plugins
In reply to: [Lightning Advanced Unit] “サイドバーを固定する”でjavascritエラーVer 2.6.1 で改善されましたこと確認しました。
ご対応 ありがとうございます。Forum: Plugins
In reply to: [The Events Calendar] Erratic Behavior on Month View Start/EndSimilar topic:
“Multiple Day Events not showing into the next month”Forum: Plugins
In reply to: [The Events Calendar] Multiple Day Events not showing into the next monthI am having the same problem.
I correct TEC4.6 codes as follows.
src/Tribe/Template/Month.php
line 572: tribe_event_end_date.meta_value >= ‘{$start_date_sql}’
line 573: AND tribe_event_end_date.meta_value <= ‘{$end_date_sql}’src/Tribe/Query.php
line 944-945 <same as>Thank you.
Forum: Plugins
In reply to: [Simple Map] “fix api key problem”対応に伴う表記のお願い明記の必要がなくなりましたこと確認いたしました。
御対応ありがとうございます。Forum: Themes and Templates
In reply to: [Lightning] アーカイブの日毎表示で ○年○月月○日となる遅レスすみません。自己解決していますので ご報告です。
以下の関数を、フィルター”lightning_get_the_archive_title”にフックさせて対応しました。
function lightning_get_the_archive_title_revise( $title ) { if ( is_day() ) { $title = get_the_date( 'Y年n月j日' ); } return $title; }