Skip to content

Instantly share code, notes, and snippets.

View Jeffrey-H's full-sized avatar
🏠
Working from home

Jeffrey Jeffrey-H

🏠
Working from home
View GitHub Profile
@Jeffrey-H
Jeffrey-H / w.bashrc
Last active November 5, 2025 13:23
Warden shell alias "W"
# Warden shell command, usage:
# `W php artisan` to execute `php artisan` inside warden
# Or `W` to enter the live shell.
W() {
if [ $# -eq 0 ]; then
warden shell
else
warden env exec php-fpm "$@"
fi
}
--- a/view/frontend/web/template/billing-address/details.html 2022-11-04 08:45:07.416589211 +0100
+++ a/view/frontend/web/template/billing-address/details.html 2022-11-04 08:44:24.652000000 +0100
@@ -8,7 +8,8 @@
<text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text>
<text args="currentBillingAddress().middlename"></text>
<text args="currentBillingAddress().lastname"></text> <text args="currentBillingAddress().suffix"></text><br>
- <text args="currentBillingAddress().street.join(', ')" if="currentBillingAddress().street"></text><br>
+ <text args="currentBillingAddress().street.join(', ')" if="currentBillingAddress().street"></text>
+ <text args="tigHouseNumber()"></text><br/>
<text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span>