Compare commits
6 Commits
2f8a8bf527
...
feature/ex
| Author | SHA1 | Date | |
|---|---|---|---|
| 98ccf560c9 | |||
| e393572081 | |||
| e37cafd839 | |||
| 1bf0ea3450 | |||
| a128906dc0 | |||
| ddec414409 |
@ -13,14 +13,4 @@ $btn-color: (
|
|||||||
.btn-sm-#{$name} {
|
.btn-sm-#{$name} {
|
||||||
color: $color !important;
|
color: $color !important;
|
||||||
}
|
}
|
||||||
.btn-outline-#{$name},
|
|
||||||
.btn-lg-outline-#{$name},
|
|
||||||
.btn-sm-outline-#{$name} {
|
|
||||||
color: $color;
|
|
||||||
&:hover,
|
|
||||||
&:focus,
|
|
||||||
&:active {
|
|
||||||
color: $color !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -79,4 +79,19 @@ $(() => {
|
|||||||
$(".js-select-link").on("change", ({ target }) => {
|
$(".js-select-link").on("change", ({ target }) => {
|
||||||
window.location.href = $(target).val();
|
window.location.href = $(target).val();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Postcode input formatting
|
||||||
|
const $postCodeInput = $("input[name='postcode']");
|
||||||
|
$postCodeInput.on("input", function () {
|
||||||
|
let value = $(this).val();
|
||||||
|
|
||||||
|
// Match 4 digits followed by 2 letters (e.g., 1234AB)
|
||||||
|
const match = value.match(/^(\d{4})([a-zA-Z]{2})$/);
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
// Add space between numbers and letters
|
||||||
|
const formatted = `${match[1]} ${match[2]}`;
|
||||||
|
$(this).val(formatted);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@ -26,38 +26,43 @@
|
|||||||
|
|
||||||
{block name='pagination_page_list'}
|
{block name='pagination_page_list'}
|
||||||
{if $pagination.should_be_displayed}
|
{if $pagination.should_be_displayed}
|
||||||
<nav>
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
<ul class="pagination justify-content-center mt-4 mb-2">
|
<div class="results__block">
|
||||||
{foreach from=$pagination.pages item="page"}
|
{l s='%curr_numer% van %total_items% resultaten' sprintf=['%curr_numer%' => $pagination.items_shown_to,'%total_items%' => $pagination.total_items] d='Shop.Theme.Actions'}
|
||||||
<li class="page-item{if $page.current} active{/if} {if $page.type === 'spacer'}disabled{/if}">
|
</div>
|
||||||
{if $page.type === 'spacer'}
|
<nav>
|
||||||
<span
|
<ul class="pagination justify-content-center m-0">
|
||||||
rel="{if $page.type === 'previous'}prev{elseif $page.type === 'next'}next{else}nofollow{/if}"
|
{foreach from=$pagination.pages item="page"}
|
||||||
href="#"
|
<li class="page-item{if $page.current} active{/if} {if $page.type === 'spacer'}disabled{/if}">
|
||||||
class="page-link"
|
{if $page.type === 'spacer'}
|
||||||
>
|
<span
|
||||||
…
|
rel="{if $page.type === 'previous'}prev{elseif $page.type === 'next'}next{else}nofollow{/if}"
|
||||||
</span>
|
href="#"
|
||||||
{else}
|
class="page-link"
|
||||||
<a
|
>
|
||||||
rel="{if $page.type === 'previous'}prev{elseif $page.type === 'next'}next{else}nofollow{/if}"
|
…
|
||||||
href="{$page.url}"
|
</span>
|
||||||
class="page-link {['disabled' => !$page.clickable, 'js-search-link' => true]|classnames}"
|
{else}
|
||||||
>
|
<a
|
||||||
{if $page.type === 'previous'}
|
rel="{if $page.type === 'previous'}prev{elseif $page.type === 'next'}next{else}nofollow{/if}"
|
||||||
<span class="material-icons font-reset align-middle">keyboard_arrow_left</span>
|
href="{$page.url}"
|
||||||
<span class="sr-only">{l s='Previous' d='Shop.Theme.Actions'}</span>
|
class="page-link {['disabled' => !$page.clickable, 'js-search-link' => true]|classnames}"
|
||||||
{elseif $page.type === 'next'}
|
>
|
||||||
<span class="material-icons font-reset align-middle">keyboard_arrow_right</span>
|
{if $page.type === 'previous'}
|
||||||
<span class="sr-only">{l s='Next' d='Shop.Theme.Actions'}</span>
|
<span class="material-icons font-reset align-middle">keyboard_arrow_left</span>
|
||||||
{else}
|
<span class="sr-only">{l s='Previous' d='Shop.Theme.Actions'}</span>
|
||||||
{$page.page}
|
{elseif $page.type === 'next'}
|
||||||
{/if}
|
<span class="material-icons font-reset align-middle">keyboard_arrow_right</span>
|
||||||
</a>
|
<span class="sr-only">{l s='Next' d='Shop.Theme.Actions'}</span>
|
||||||
{/if}
|
{else}
|
||||||
</li>
|
{$page.page}
|
||||||
{/foreach}
|
{/if}
|
||||||
</ul>
|
</a>
|
||||||
</nav>
|
{/if}
|
||||||
|
</li>
|
||||||
|
{/foreach}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
{/block}
|
{/block}
|
||||||
|
|||||||
@ -1,7 +1,15 @@
|
|||||||
|
{* Defensive: Handles LazyArray objects for category *}
|
||||||
|
{if is_object($category)}
|
||||||
|
{$category = $category|json_encode|json_decode:true}
|
||||||
|
{if isset($category.category)}
|
||||||
|
{$category = $category.category}
|
||||||
|
{/if}
|
||||||
|
{/if}
|
||||||
|
|
||||||
<div id="js-product-list-footer">
|
<div id="js-product-list-footer">
|
||||||
{if $category.additional_description && $listing.pagination.items_shown_from == 1}
|
{if isset($category.additional_description) && $category.additional_description && $listing.pagination.items_shown_from == 1}
|
||||||
<div id="category-description-2" class="cms-content my-3">
|
<div id="category-description-2" class="cms-content my-3">
|
||||||
{$category.additional_description nofilter}
|
{$category.additional_description nofilter}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
@ -26,7 +26,7 @@
|
|||||||
{$listingType = $type|default:'listing'}
|
{$listingType = $type|default:'listing'}
|
||||||
<div
|
<div
|
||||||
{if $listingType === 'listing'}
|
{if $listingType === 'listing'}
|
||||||
class="products-list__block products-list__block--grid"
|
class="products-list__block col col-sm-6 col-lg-4 col-xl-3"
|
||||||
{elseif $listingType === 'slider'}
|
{elseif $listingType === 'slider'}
|
||||||
class="swiper-slide product-slider__item col-6 col-md-4 col-lg-3"
|
class="swiper-slide product-slider__item col-6 col-md-4 col-lg-3"
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
Reference in New Issue
Block a user