Skip to content

Commit d661565

Browse files
committed
Change entitled to named
1 parent 8af33c4 commit d661565

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/payment-services/customize-buttons-messaging.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ You can easily customize [PayPal Smart button styling](#paypal-smart-buttons) an
99

1010
To easily customize Smart Button styling, create a module with a dependency on `Magento_PaymentServicesPaypal`.
1111

12-
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new type entitled `Magento\PaymentServicesPaypal\Block\SmartButtons`.
13-
1. In the `arguments` block, specify one argument entitled `componentConfig` and `xsi:type="array"`.
14-
1. Under this new argument, specify three items entitled `product`, `cart`, and `minicart` with `xi:type="array"`.
15-
1. Under each item, specify a nested item entitled `styles` with `xsi:type="array"`.
12+
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new type named `Magento\PaymentServicesPaypal\Block\SmartButtons`.
13+
1. In the `arguments` block, specify one argument named `componentConfig` and `xsi:type="array"`.
14+
1. Under this new argument, specify three items named `product`, `cart`, and `minicart` with `xi:type="array"`.
15+
1. Under each item, specify a nested item named `styles` with `xsi:type="array"`.
1616
1. Reference [PayPal's available styling](https://developer.paypal.com/docs/archive/checkout/how-to/customize-button/) and apply any desired parameters as nested items.
1717

1818
``` xml
@@ -58,18 +58,18 @@ To easily customize the PayPal PayLater messaging, style, and layout, create a m
5858

5959
### Create module for product page, cart, and minicart
6060

61-
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new `type` entitled `Magento\PaymentServicesPaypal\Block\Message`.
62-
1. In the `arguments` block, specify one argument entitled `componentConfig` and `xsi:type="array"`.
63-
1. Under this new argument, specify three items entitled `product`, `cart`, and `minicart` with `xsi:type="array"`.
61+
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new `type` named `Magento\PaymentServicesPaypal\Block\Message`.
62+
1. In the `arguments` block, specify one argument named `componentConfig` and `xsi:type="array"`.
63+
1. Under this new argument, specify three items named `product`, `cart`, and `minicart` with `xsi:type="array"`.
6464

6565
### Create module for checkout page
6666

67-
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new type entitled `Magento\PaymentServicesPaypal\Model\SmartButtonsConfigProvider`.
68-
1. In the `arguments` block, specify one argument entitled `messageStyles` and `xsi:type="array"`.
67+
1. In the [`di.xml` file]({{ site.baseurl }}{{ site.gdeurl }}/extension-dev-guide/build/di-xml-file.html), create a new type named `Magento\PaymentServicesPaypal\Model\SmartButtonsConfigProvider`.
68+
1. In the `arguments` block, specify one argument named `messageStyles` and `xsi:type="array"`.
6969

7070
### Edit the styling
7171

72-
1. Under each element (for the `product`, `cart`, `minicart`, or `checkout`), specify a nested item entitled `styles` with `xsi:type="array"`.
72+
1. Under each element (for the `product`, `cart`, `minicart`, or `checkout`), specify a nested item named `styles` with `xsi:type="array"`.
7373
1. Reference [PayPal's available styling](https://developer.paypal.com/docs/business/pay-later/us/integrate/customize-messages/) and apply any desired parameters as nested items.
7474

7575
``` xml

0 commit comments

Comments
 (0)