fix: corrige divers oublis
This commit is contained in:
parent
2561448411
commit
a9c2f9bde6
7 changed files with 7 additions and 3 deletions
|
|
@ -18,6 +18,7 @@ $informations_produits = wc_get_products([
|
||||||
"limit" => 12,
|
"limit" => 12,
|
||||||
"order" => "DESC",
|
"order" => "DESC",
|
||||||
"orderby" => "date",
|
"orderby" => "date",
|
||||||
|
"status" => "publish",
|
||||||
]);
|
]);
|
||||||
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
||||||
$produits = array_map(callback: "recupere_informations_produit_shop", array: $informations_produits);
|
$produits = array_map(callback: "recupere_informations_produit_shop", array: $informations_produits);
|
||||||
|
|
|
||||||
|
|
@ -271,7 +271,7 @@ img {
|
||||||
a {
|
a {
|
||||||
/* Couleurs */
|
/* Couleurs */
|
||||||
--lien-contour-couleur-focus: var(--couleur-noir); /* 1 */
|
--lien-contour-couleur-focus: var(--couleur-noir); /* 1 */
|
||||||
text-decoration: underline solid; /* 1 */
|
text-decoration: underline; /* 1 */
|
||||||
text-decoration-color: transparent; /* 1 */
|
text-decoration-color: transparent; /* 1 */
|
||||||
text-decoration-skip-ink: auto; /* 1 */
|
text-decoration-skip-ink: auto; /* 1 */
|
||||||
outline: 1px solid transparent; /* 2 */
|
outline: 1px solid transparent; /* 2 */
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -162,6 +162,7 @@ function recupere_produits_meme_collection($slug_collection) {
|
||||||
"limit" => 4,
|
"limit" => 4,
|
||||||
"order" => "DESC",
|
"order" => "DESC",
|
||||||
"orderby" => "date",
|
"orderby" => "date",
|
||||||
|
"status" => "publish",
|
||||||
"tax_query" => [
|
"tax_query" => [
|
||||||
[
|
[
|
||||||
"taxonomy" => "collection",
|
"taxonomy" => "collection",
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ a {
|
||||||
/* Couleurs */
|
/* Couleurs */
|
||||||
--lien-contour-couleur-focus: var(--couleur-noir); /* 1 */
|
--lien-contour-couleur-focus: var(--couleur-noir); /* 1 */
|
||||||
|
|
||||||
text-decoration: underline solid; /* 1 */
|
text-decoration: underline; /* 1 */
|
||||||
text-decoration-color: transparent; /* 1 */
|
text-decoration-color: transparent; /* 1 */
|
||||||
text-decoration-skip-ink: auto; /* 1 */
|
text-decoration-skip-ink: auto; /* 1 */
|
||||||
outline: 1px solid transparent; /* 2 */
|
outline: 1px solid transparent; /* 2 */
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ $informations_produits = wc_get_products([
|
||||||
"limit" => 12,
|
"limit" => 12,
|
||||||
"order" => "DESC",
|
"order" => "DESC",
|
||||||
"orderby" => "date",
|
"orderby" => "date",
|
||||||
|
"status" => "publish",
|
||||||
]);
|
]);
|
||||||
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
/** @var InformationsProduitShop $produits Les informations strictement nécessaires pour la grille des Produits. */
|
||||||
$produits = array_map(callback: "recupere_informations_produit_shop", array: $informations_produits);
|
$produits = array_map(callback: "recupere_informations_produit_shop", array: $informations_produits);
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
<img
|
<img
|
||||||
alt="{{ alt }}"
|
alt="{{ alt }}"
|
||||||
decoding="async"
|
decoding="sync"
|
||||||
height="{{ height }}"
|
height="{{ height }}"
|
||||||
loading="eager"
|
loading="eager"
|
||||||
src="{{ rel_url }}.jpg"
|
src="{{ rel_url }}.jpg"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue