Merge pull request #2738 from woocommerce/PCP-3819-Update-placeholder-links

Update placeholder links (3819)
This commit is contained in:
Emili Castells 2024-10-29 14:19:21 +01:00 committed by GitHub
commit 99d4c15ca6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 5 deletions

View file

@ -82,6 +82,10 @@
&__checkbox-presentation {
@include fake-input-field(2px);
}
&__additional-content{
position: relative;
z-index: 1;
}
@media screen and (max-width: 480px) {
gap: 16px;

View file

@ -111,9 +111,12 @@ const StepProducts = ( {
currentValue={ products }
type="checkbox"
>
<a href="#">
<a
target="__blank"
href="https://woocommerce.com/document/woocommerce-paypal-payments/#subscriptions-faq"
>
{ __(
'WooCommerce Subscriptions - TODO missing link',
'WooCommerce Subscriptions',
'woocommerce-paypal-payments'
) }
</a>

View file

@ -89,10 +89,10 @@ const WelcomeForm = () => {
const advancedUsersDescription = sprintf(
// translators: %s: Link to PayPal REST application guide
__(
'For advanced users: Connect a custom PayPal REST app for full control over your integration. For more information on creating a PayPal REST application, <a href="%s">click here</a>.',
'For advanced users: Connect a custom PayPal REST app for full control over your integration. For more information on creating a PayPal REST application, <a target="_blank" href="%s">click here</a>.',
'woocommerce-paypal-payments'
),
'#'
'https://woocommerce.com/document/woocommerce-paypal-payments/#manual-credential-input '
);
return (
@ -116,7 +116,7 @@ const WelcomeForm = () => {
<Separator className="ppcp-r-page-welcome-mode-separator" />
<SettingsToggleBlock
label={ __(
'Manually Connect - TODO missing link',
'Manually Connect',
'woocommerce-paypal-payments'
) }
description={ advancedUsersDescription }