-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(led-544): additional fields appear twice (#94)
- Loading branch information
1 parent
6526dfa
commit 58eda9b
Showing
7 changed files
with
45 additions
and
41 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
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 +1 @@ | ||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '1a2bf5df7229fa3f1127d147cd1362c4'); | ||
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '2b52588deee13ae5704c06dae8bd9a99'); |
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 +1 @@ | ||
#lco-wrapper{display:flex;flex-direction:column;align-items:center}#lco-wrapper #lco-order-review,#lco-wrapper #lco-iframe{width:100%}#lco-wrapper .woocommerce-billing-fields,#lco-wrapper .woocommerce-shipping-fields,#lco-wrapper .woocommerce-terms-and-conditions-wrapper{display:none}#lco-wrapper #lco-iframe{display:flex;justify-content:center} | ||
#lco-wrapper{display:flex;flex-direction:column;align-items:center}#lco-wrapper #lco-order-review,#lco-wrapper #lco-iframe{width:100%}#lco-wrapper #lco-iframe{display:flex;justify-content:center} |
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,15 +1,15 @@ | ||
version: '3.1' | ||
version: "3.1" | ||
services: | ||
db: | ||
image: mariadb:latest | ||
image: mariadb:10.4 | ||
restart: on-failure | ||
ports: | ||
- 13306:3306 | ||
environment: | ||
MYSQL_DATABASE: testdb | ||
MYSQL_USER: wordpress | ||
MYSQL_PASSWORD: wordpress | ||
MYSQL_RANDOM_ROOT_PASSWORD: '1' | ||
MYSQL_RANDOM_ROOT_PASSWORD: "1" | ||
volumes: | ||
- dbdata:/var/lib/mysql | ||
|
||
|
@@ -74,7 +74,8 @@ services: | |
wp core install --url=http://localhost:8181 --title="Ledyer Checkout" --admin_user=admin --admin_password=password [email protected] --path=/var/www/html --skip-email; | ||
wp rewrite structure /%postname%/; | ||
wp plugin install wordpress-importer --activate; | ||
wp plugin install woocommerce --activate; | ||
wp plugin install wp-rollback --activate; | ||
wp plugin install woocommerce --version=8.2.2 --activate; | ||
wp theme install storefront --activate; | ||
wp wc tool run install_pages --user=1; | ||
wp import wp-content/plugins/woocommerce/sample-data/sample_products.xml --authors=create; | ||
|
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