-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f1fbe1a
commit 125a117
Showing
3 changed files
with
47 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# 1.0.0 - Erste Veröffentlichung | ||
- Variantenschalter auf der Produktliste anzeigen | ||
- Variantenschalter beim Hovern über eine Produkteigenschaft auf der Produktliste | ||
- Variantenschalter auf dem Off-Canvas-Warenkorb anzeigen | ||
- Variantenschalter auf der Warenkorbseite anzeigen</label> | ||
- Variantenschalter im Off-Canvas-Warenkorb anzeigen | ||
- Variantenschalter auf der Warenkorbseite anzeigen | ||
- Variantenschalter auf der Bestätigungsseite der Kaufabwicklung anzeigen | ||
- Alle diese Optionen sind konfigurierbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,48 @@ | ||
{ | ||
"name": "sas/variant-switch", | ||
"description": "Variant switch", | ||
"type": "shopware-platform-plugin", | ||
"license": "MIT", | ||
"autoload": { | ||
"psr-4": { | ||
"SasVariantSwitch\\": "src" | ||
} | ||
}, | ||
"require": { | ||
"shopware/core": "^6.3", | ||
"shopware/storefront": "^6.3" | ||
}, | ||
"extra": { | ||
"shopware-plugin-class": "SasVariantSwitch\\SasVariantSwitch", | ||
"plugin-icon": "src/Resources/config/plugin.png", | ||
"copyright": "(c) by Thuong Le<levienthuong@gmail.com>", | ||
"description": { | ||
"de-DE": "Schnellwechsel der Produktvariante", | ||
"en-GB": "Quick switch product's variant" | ||
"name":"sas/variant-switch", | ||
"description":"Show a variant switch within the listing and cart", | ||
"type":"shopware-platform-plugin", | ||
"license":"MIT", | ||
"version":"1.0.0", | ||
"keywords":[ | ||
"variant", | ||
"shopware" | ||
], | ||
"authors":[ | ||
{ | ||
"name":"Shape & Shift", | ||
"role":"Manufacturer", | ||
"homepage":"https://shapeandshift.dev" | ||
} | ||
], | ||
"autoload":{ | ||
"psr-4":{ | ||
"SasVariantSwitch\\":"src" | ||
} | ||
}, | ||
"require":{ | ||
"shopware/core":"^6.4", | ||
"shopware/storefront":"^6.4" | ||
}, | ||
"label": { | ||
"de-DE": "Variant Schalter", | ||
"en-GB": "Variant switch" | ||
"extra":{ | ||
"shopware-plugin-class":"SasVariantSwitch\\SasVariantSwitch", | ||
"plugin-icon":"src/Resources/config/plugin.png", | ||
"copyright":"(c) by Shape & Shift", | ||
"description":{ | ||
"de-DE":"Schnellwechsel der Produktvariante im Listing als auch im Warenkorb", | ||
"en-GB":"Show a variant switch within the listing and cart" | ||
}, | ||
"label":{ | ||
"de-DE":"Varianten switch im Listing", | ||
"en-GB":"Variant switch within the Listing" | ||
}, | ||
"manufacturerLink":{ | ||
"en-GB":"https://shapeandshift.dev", | ||
"de-DE":"https://shapeandshift.dev" | ||
}, | ||
"supportLink":{ | ||
"de-DE":"https://shapeandshift.dev", | ||
"en-GB":"https://shapeandshift.dev" | ||
} | ||
} | ||
} | ||
} |