Just a little demo how to use bootstraps toasts component with HTMX and custom triggers. Toasts are stackable and grouped by message (so the same message doesn't pop up several times, when already open.
A Pen by Marcus at Localhost on CodePen.
Just a little demo how to use bootstraps toasts component with HTMX and custom triggers. Toasts are stackable and grouped by message (so the same message doesn't pop up several times, when already open.
A Pen by Marcus at Localhost on CodePen.
Just things I find, but not need right now #htmx
bigskysoftware/htmx#1158 (comment)
htmx.onLoad(function (content) {
content.querySelectorAll('[data-dismiss-target]').forEach(triggerEl => {
const targetEl = document.querySelector(triggerEl.getAttribute('data-dismiss-target'))
#kirby #php
<?php
return function ($page, $pages, $kirby, $site) {
/**
* Don't show old applications
*/
if ( $page->dateFrom()->toDate() > time() || $page->dateTo()->toDate() < time()) {
#wordpress #xquery #domdocument
theme-child/function.php
<?php
function callback($buffer) {
// prevent ajax/json and admin stuff being mangled
if (strpos(trim($buffer), '<') !== 0 || is_admin()) {
#htmx #kirby
if (kirby()->request()->is('POST')) {
if(!kirby()->request()->header('HX-Request')){
go('membersarea');
}
//@see https://codepen.io/localhorst/pen/dyqbboY | |
(function () { | |
'use strict' | |
if(location.hash){ | |
const triggerEl = document.querySelector(location.hash) | |
bootstrap.Tab.getOrCreateInstance(triggerEl).show() // Select tab by name | |
} | |
const selectableTabList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tab"]')) | |
selectableTabList.forEach((selectableTab) => { |
Timezones
Two approaches to deal with timezones server- and client side.
#js #date #datetime #intl #alpinejs
Retrieve Plugin Data #kirby #php
Eg. get a blueprint or a template path in a controller:
// index.php
Kirby::plugin('my/plugin', [
'blueprints' => [
'profile_form' => __DIR__ . '/blueprints/form.yml',