Skip to content

Commit

Permalink
FIX: double landmark names
Browse files Browse the repository at this point in the history
  • Loading branch information
allrude authored Dec 28, 2024
1 parent dfad6fe commit 2a17994
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[Unreleased]: https://github.com/Siteation/magento2-storeinfo/compare/1.0.0...main

### Fixed
- Double landmark names

## 1.0.0 - 2024-03-16

Initial release 🎉
2 changes: 1 addition & 1 deletion view/frontend/templates/hyva/footer/usps.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if (count($usps) === 0) {

<section
class="border-t border-container-darker bg-container-darker py-4"
aria-label="<?= $escaper->escapeHtml(__('Our Unique Selling Points')) ?>"
aria-label="<?= $escaper->escapeHtml(__('Our Extra Selling Points')) ?>"
>
<div class="top-container container">
<ul
Expand Down
2 changes: 1 addition & 1 deletion view/frontend/templates/hyva/product/usps.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if (count($usps) === 0) {
}
?>

<section aria-label="<?= $escaper->escapeHtml(__('Our Unique Selling Points')) ?>">
<section aria-label="<?= $escaper->escapeHtml(__('Our Unique Product Selling Points')) ?>">
<ul class="usps space-y-2 font-semibold">
<?php foreach ($usps as $usp): ?>
<li class="flex gap-2 items-center">
Expand Down
2 changes: 1 addition & 1 deletion view/frontend/templates/luma/footer/usps.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (count($usps) === 0) {

?>

<section class="usps-wrapper" aria-label="<?= $escaper->escapeHtml(__('Our Unique Selling Points')) ?>">
<section class="usps-wrapper" aria-label="<?= $escaper->escapeHtml(__('Our Extra Selling Points')) ?>">
<ul class="usps -style-row">
<?php foreach ($usps as $usp): ?>
<li>
Expand Down
2 changes: 1 addition & 1 deletion view/frontend/templates/luma/product/usps.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (count($usps) === 0) {

?>

<section class="usps-wrapper" aria-label="<?= $escaper->escapeHtml(__('Our Unique Selling Points')) ?>">
<section class="usps-wrapper" aria-label="<?= $escaper->escapeHtml(__('Our Unique Product Selling Points')) ?>">
<ul class="usps">
<?php foreach ($usps as $usp): ?>
<li>
Expand Down

0 comments on commit 2a17994

Please sign in to comment.